如何缓存wagtail页面?

时间:2017-09-29 18:38:58

标签: caching wagtail

如何在Wagtail中缓存页面?默认的url方式或cache_page装饰器不起作用: [https://docs.djangoproject.com/en/1.11/topics/cache/#specifying-per-view-cache-in-the-urlconf][1]

class HomePage(Page):
    body = RichTextField(blank=True)

    content_panels = Page.content_panels + [
        FieldPanel('body', classname="full"),
    ]

1 个答案:

答案 0 :(得分:0)

由于Wagtail经常为您自动化视图,我发现最简单的方法是在模板层缓存:

https://docs.djangoproject.com/en/1.11/topics/cache/#template-fragment-caching

Wagtail还支持像Varnish这样的前端缓存,但这是另一项需要维护的服务。