gpt4 book ai didi

python - 在 Tornado 中禁用静态文件缓存

转载 作者:IT老高 更新时间:2023-10-28 20:24:34 24 4
gpt4 key购买 nike

默认情况下,Tornado 会将 Cache-Control: public header 放在由 StaticFileHandler 提供的任何文件上。这个怎么改成Cache-Control: no-cache

最佳答案

接受的答案不适用于 Chrome。子类 StaticFileHandler 使用以下:

class MyStaticFileHandler(tornado.web.StaticFileHandler):
def set_extra_headers(self, path):
# Disable cache
self.set_header('Cache-Control', 'no-store, no-cache, must-revalidate, max-age=0')

关于python - 在 Tornado 中禁用静态文件缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12031007/

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