使用Flask,如何修改ALL输出的Cache-Control标头?

时间:2014-04-16 14:25:41

标签: python http flask

我尝试使用此

@app.after_request
def add_header(response):
    response.headers['Cache-Control'] = 'max-age=300'
    return response

但是这会导致出现重复的Cache-Control标头。我只想要max-age = 300,而不是max-age = 1209600 line!

$ curl -I http://my.url.here/
HTTP/1.1 200 OK
Date: Wed, 16 Apr 2014 14:24:22 GMT
Server: Apache
Cache-Control: max-age=300
Content-Length: 107993
Cache-Control: max-age=1209600
Expires: Wed, 30 Apr 2014 14:24:22 GMT
Content-Type: text/html; charset=utf-8

2 个答案:

答案 0 :(得分:50)

使用response.cache_control object;这是一个ResponseCacheControl() instance,可让您直接设置各种缓存属性。此外,如果已存在重复标题,则确保不添加重复标题。

@app.after_request
def add_header(response):
    response.cache_control.max_age = 300
    return response

答案 1 :(得分:17)

您可以在创建Flask应用程序时为所有静态文件设置默认值:

app = Flask(__name__)
app.config['SEND_FILE_MAX_AGE_DEFAULT'] = 300

请注意,如果您在request.cache_control中修改after_request,就像在接受的答案中一样,这也会修改静态文件的Cache-Control标头,并且可能会覆盖您在我显示时设置的行为以上。我目前正在使用以下代码来完全禁用动态生成内容的缓存,而不是静态文件:

# No cacheing at all for API endpoints.
@app.after_request
def add_header(response):
    # response.cache_control.no_store = True
    if 'Cache-Control' not in response.headers:
        response.headers['Cache-Control'] = 'no-store'
    return response

不完全确定这是最好的方法,但它到目前为止对我有效。