Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在创建/更新对象期间可以“重置”缓存吗?
from django.views.decorators.cache import cache_page @cache_page(60 * 15) def index(request): ....
正如 Fasouto 所建议的那样,关于该问题的第一个答案将解决您的问题,但是如果您在设置文件中设置了 key_prefix,这将不起作用。因为django在设置缓存时选择了key_prefix,但在检索cache_key时它不会从设置文件中选择,所以要么在检索缓存键时提供key_prefix,要么尝试从设置文件中删除key_prefix,看看是否有效。