gpt4 book ai didi

python - Flask 缓存设置方法抛出 KeyError?

转载 作者:行者123 更新时间:2023-12-02 05:49:40 26 4
gpt4 key购买 nike

为了缓存一些数据,我正在调用cache.set方法。然而它抛出了KeyError。错误日志:

 File "D:\Sample_Project\SomeRouter.py", line 176, in run
FetchFeed._prepareCache(f_content, cache, _program, _sprint)
File "D:\Sample_Project\SomeRouter.py", line 197, in _prepareCache
cache.set(cKey, data[last_index:last_index + MAX_DATA_PER_PAGE])
File "c:\python\lib\site-packages\flask_caching\__init__.py", line 254, in set
return self.cache.set(*args, **kwargs)
File "c:\python\lib\site-packages\flask_caching\__init__.py", line 246, in cache
return app.extensions["cache"][self]
KeyError: <flask_caching.Cache object at 0x04F9C8D0>

服务器模块如下所示:

cache_type = 'simple' if 'FLASK_ENV' in os.environ and os.environ['FLASK_ENV'] == 'development' else 'uwsgi'
cache = Cache(config={'CACHE_TYPE': cache_type})
app = Flask("MY_PROJECT")
cache.init_app(app)

# some api.route functions
# goes here ....

if __name__ == "__main__":
with app.app_context():
cache.clear()
app.run(host="0.0.0.0")

和 SomeRouter 模块:

from server import cache

@staticmethod
def _prepareCache(data, cache, program):
total_records = len(data)
if total_records > 0:
cKey = FetchFeed \
._constructCacheKey(program)
cache.set(cKey, data)
else:
print("data size is empty.")

注意:我删除了不必要的代码。

我还设置了断点,并在服务器模块本身中调用了cache.set(some_key, some_value)。它返回 True,但在 SomeRouter 模块中导入和使用相同的缓存对象时会抛出 KeyError。难道是我导入对象的方式不对?我还尝试在使用缓存对象之前导入它,但它不起作用。知道这是怎么回事吗?

最佳答案

问题是我正在访问请求上下文之外的cache对象,即在“SomeRouter”模块中,因此它不知道在哪个上下文下使用它.

在收到请求的server模块中,缓存知道应用程序的应用程序,但在SomeRouter<中的cache.set(cKey, data)期间 模块,它会抛出 KeyError。如上所述,该错误是合理的。

解决方案是推送应用程序上下文,如下所示:

from server import app, cache

# Using context
with app.app_context():
cache.set(cKey, data)

这将推送一个新的应用程序上下文(使用应用程序的应用程序)。

感谢Mark Hildreth ,感谢他在 context in flask 上的精彩回答

关于python - Flask 缓存设置方法抛出 KeyError?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59679217/

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