1

在 Django 中,我可以使用类似这样的东西来管理请求的缓存最大年龄:

from django.views.decorators.cache import cache_control

@cache_control(max_age=3600)
def my_view(request):
    # ...

如何在视图函数中设置不同的max_age,以便它可以取决于内容是什么?request

例子:

def my_view(request):
    if is_good_to_cache(request):
        # set max_age to 36000
    else:
        # set max_age to 42 
    # ... 
4

1 回答 1

4

就像利用internalcache_control一样,直接放:patch_cache_control

from django.utils.cache import patch_cache_control

def my_view(request):
    if is_good_to_cache(request):
        max_age = 36000
    else:
        max_age = 42 
    resp = render(...)
    patch_cache_control(resp, max_age=max_age)
    return resp
于 2013-01-15T14:28:23.827 回答