我将从这个问题开始,指出我对Web开发很新。
现在要点:我最近构建了一个相当小的Flask
应用程序,它加载数据然后使用bokeh
输出它的可视化。因此,它必须将大量数据存储在内存中(大约10-20 mb)。这本身并不是一个真正的问题,但是,在视图函数发送请求后,应用程序不会释放内存中的对象。这意味着只需几次使用后,应用程序就会耗尽大部分内存。
因此,我的问题是:在视图函数返回任何请求后,如何强制Flask
释放使用过的对象?或者我是以错误的方式解决这个问题?值得一提的是,我使用Flask
的内置服务器,因为我们仍然只是原型。
¨
谢谢,Tingis
编辑这是我的一个视图功能。它的作用是使用SQLAlchemy
从数据库加载数据,然后执行一些时间序列操作(例如内核密度估计和计算累积回报)并输出已加入的div
和script
bokeh
数字的字符串,它是以_plt
结尾的变量。
from app import app
from app.business_logic.classes.interface_classes import Company
from app.business_logic.functions.functions import get_session
@app.route('/analysis_tool/company_performance', methods=['GET', 'POST'])
def analysis_tool__company_performance():
session = get_session()
companies_to_analyse = {
'Company A': {'ts_to_use': 'Returns of Company A'},
'Company B': {'ts_to_use': 'Returns of Company B'}
}
chosen_company = request.form.get('security')
types_of_plots = {}
if chosen_company is not None:
company = Company(session, chosen_company)
company.load_company()
company.load_timeseries(companies_to_analyse[chosen_platform]['ts_to_use'])
company.unpack_observations_of_ts_as_df()
ret_df = company.manipulate_dataframe('convert timeseries to returns',
frequency='monthly',
ts_type=company.loaded_ts_orm_obj.ts_type_name)
cum_ret_df = company.manipulate_dataframe('calculate cumulative return', df=ret_df)
cum_ret_plt = company.plot_dataframe(cum_ret_df, legend=False)
kde_plt = company.plot_kde(ret_df)
types_of_plots = {'Cumulative_return': cum_ret_plt, 'KDE': kde_plt}
return render_template('plotting/plot_using_panels.html',
items=sort_dictionary(platforms_to_analyse),
plot_types=sort_dictionary(types_of_plots),
selected=chosen_company)
这有帮助吗?
编辑2 我尝试了以下question中提供的解决方案,在每次调用绘图界面后添加gc.collect()
,以及函数< / p>
@app.teardown_request
def teardown_request(exception):
gc.collect()
但记忆仍未释放。
答案 0 :(得分:1)
您是否有可能在get_session
和公司对象之间创建循环引用?