Invalidate and purge (frontend) cache via an user-friendly interface in the Wagtail CMS.
- Invalidate cache manually via the Wagtail CMS
- Site settings driven frontend cache settings (no code/deployments needed in order to change your settings)
- Purge all cache (use with caution)
- Python 3
- Django >= 2
- Wagtail >= 3
- wagtail-modeladmin==2.0.0
- Frontend cache invalidator
Install the package
pip install wagtail-cache-invalidator
Add wagtail_cache_invalidator
to your INSTALLED_APPS
and make sure the frontend cache invalidator is setup.
INSTALLED_APPS = [
...
"wagtail_cache_invalidator",
]
Run migrate
manage.py migrate