wagtail-cache
wagtail-cache copied to clipboard
A simple page cache for Wagtail based on the Django cache middleware.
I am seeing `Vary: Cookie` added to requests when `WAGTAIL_CACHE = True` for responses that do not contain `Vary: Cookie` when `WAGTAIL_CACHE = False`
Hello. I'm using Wagtail-Cache on a site that also uses [Wagtail-Personalisation](https://github.com/wagtail/wagtail-personalisation) which allows different users to see different versions of pages based on segmentation. Obviously I need to cache the...
See also #45 . Edit: To add, the quickest way to run redis locally, temporarily would be `docker run --rm -p 6379:6379 redis`
If the steps in sections 1 of https://docs.coderedcorp.com/wagtail-cache/getting_started/install.html are followed, password-protected pages are given a `Cache-Control` header of `max-age=300`, leading to password-protected content being incorrectly and insecurely cached by CDNs....
We are getting the following error, is it a known issue? `_pickle.PicklingError: Can't pickle : attribute lookup SampleStreamBlockMeta on wagtail.core.blocks.base failed`
https://docs.coderedcorp.com/wagtail-cache/stable/getting_started/install.html#caching-wagtail-pages-only: ... url(r'', include(wagtail_urls)), But in the newest version, it seems that "re_path(r'', include(codered_urls))," replace the older define?
I think this is an issue at the [django-develeoper-panel](https://github.com/loftylabs/django-developer-panel) end though so if I get time I'll do some testing and open an issue or pull request there. The problem...
This moves the keyring into the database to avoid duplication and also keep it up to date. It would replace #63
This prevents duplicate entries in the `uri_keys` lists for the items in the keyring.
Hi, We hit intermittent 500 server errors on a site that uses the cache middleware and the memcached back-end. - Django 4.2 - Wagtail 5.1.3 - wagtail-cache 2.3.0 - pymemcached...