Python django.views.decorators.cache 模块,cache_control() 实例源码

我们从Python开源项目中,提取了以下1个代码示例,用于说明如何使用django.views.decorators.cache.cache_control()

项目:tumanov_castleoaks    作者:Roamdev    | 项目源码 | 文件源码
def get_handler(self, request):
        handler = super().get_handler(request)
        if handler:
            return cache_control(private=True, max_age=7*24*3600)(handler)
        else:
            return handler