在Tornado中禁用静态文件缓存

时间:2012-08-20 00:16:50

标签: python caching tornado static-files

默认情况下,Tornado会在Cache-Control: public提供的任何文件上放置StaticFileHandler标头。如何将其更改为Cache-Control: no-cache

2 个答案:

答案 0 :(得分:41)

接受的答案对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')

答案 1 :(得分:13)

查看tornado / web.py似乎最简单的方法是对StaticFileHandler进行子类化并覆盖set_extra_headers方法。

def set_extra_headers(self, path):
    self.set_header("Cache-control", "no-cache")