gpt4 book ai didi

python - 根据调度程序和用户请求更新 Flask-Cache

转载 作者:行者123 更新时间:2023-12-05 07:42:15 25 4
gpt4 key购买 nike

我正在尝试缓存一个耗时请求的结果。

首先我有一个 flask 模板如下:

@app.route("/")
@app.route("/tabs", methods=['GET','POST'])
def tab():
return render_template("tabs.html")

@app.route("/graph", methods=['GET','POST'])
def graph():
#Some code
return render_template("chart.html", the_div=div, the_script=script,
form=form, tables=table, titles = testyear)

@app.route("/prices", methods=['GET','POST'])
def prices():
#Some other code
return render_template("prices.html", PlotGroup=PlotGroup,
ScriptGroup=ScriptGroup, DivGroup=DivGroup)

我在代码的顶部初始化了应用程序、缓存和超时:

# Checking is prod to change server from 5000 to 5001
IS_PROD = sys.argv[1] == "prod"
# Setting up cache timer
CACHE_TIMEOUT = 20
# Defining the Flask App
app = Flask(__name__, template_folder='Template')
# define the cache config :
app.config['CACHE_TYPE'] = 'simple'
app.cache = Cache(app)

我还创建了一个配置类:

class Config(object):
JOBS = [
{
'id' : 'refresh_cache',
'func' : 'main:get_my_cache',
'trigger' : 'interval',
'seconds' : 5
}
]

SCHEDULER_API_ENABLED = True

函数“get_my_cache()”定义如下:

@app.cache.cached(timeout = CACHE_TIMEOUT, key_prefix='my-cache')
def get_my_cache():
cacheval = app.cache.get('my-cache')
print(cacheval)
if cacheval is None:
#cacheval1, cacheval2 = DataHandling.extract_full_table()
cacheval1, cacheval2 = DataHandling.offlinedata()
cacheval = [cacheval1, cacheval2]
print("Cache updated at : " + time.strftime("%b %d %Y - %H:%M:%S"))
app.cache.set('my-cache', [cacheval1, cacheval2])
return cacheval[0], cacheval[1]

在主要部分我加载所有内容:

if __name__ == '__main__':
app.config.from_object(Config())
scheduler = APScheduler()
scheduler.init_app(app)
scheduler.start()

if IS_PROD:
app.run(host='0.0.0.0',debug=False, port=5000)
else:
app.run(debug=True, port=5001)

所以如果我从下面的时间表中理解得很好的话:

None
Cache updated at : Jun 19 2017 - 11:25:58
None
Cache updated at : Jun 19 2017 - 11:26:23
None
Cache updated at : Jun 19 2017 - 11:26:25
127.0.0.1 - - [19/Jun/2017 11:26:25] "GET /graph HTTP/1.1" 200 -
  1. 我的调度程序每 5 秒检查一次我的缓存(时间是为了测试它在现实中会更长)并且我有效地看到缓存每 25 秒更新一次。

  2. 我的问题是,当我刷新页面时,我在上次更新 2 秒后看到缓存更新...据我了解,似乎有两种缓存:一种用于页面(localhost/graph) 和另一个由调度程序设置的。即使两者都与相同的 key_prefix 相关...

我知道这可能与不同的线程有关?这可能是问题所在吗?

最佳答案

def task1(app):
with app.app_context():
#cache.set("t1","123")
x=cache.get("t1")
print(x)

class Config(object):
JOBS = [ { # add task1
'id': 'job1',
'func': '__main__:task1',
'args': (3, 4,app),
'trigger': 'interval',
'seconds': 5,
}]

关于python - 根据调度程序和用户请求更新 Flask-Cache,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44627088/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com