我想使用SimpleCahce框架从Flask中的后台进程设置缓存变量。那就是:
from rq import Queue
from worker import conn
from werkzeug.contrib.cache import SimpleCache
cache = SimpleCache()
app = Flask(__name__)
q = Queue(connection=conn)
# background process to be run. located in a seperate file
def test():
for i in range(10):
cache.set("value", i, 3600)
time.sleep(1)
@app.route('/')
def home():
cache.clear()
q.empty()
q.enqueue(test, timeout=1000)
return jsonify({'state':"running"})
@app.route('/current_value')
def get_value():
return jsonify({'value':cache.get("value")})
但是,这将始终返回null
。我在使用Redis之前已经完成了这个,但是在SimpleCache不允许的后台进程中设置缓存?或者我只是做错了什么?
答案 0 :(得分:0)
Werkzeug's SimpleCache isn't thread safe.它不打算被其他线程或进程使用,因为它没有实现锁定。
此外,文档似乎暗示缓存存储在进程内存中,这使得很难从辅助缓存中更改主进程的缓存。