- Author:
- mattgrayson
- Posted:
- August 1, 2008
- Language:
- Python
- Version:
- .96
- Score:
- 7 (after 7 ratings)
A simple helper function that clears the cache for a given URL, assuming no headers. Probably best used when wired up to a model's post_save event via signals. See message to django-users mailing list for background.
1 2 3 4 5 6 7 8 9 10 | from django.core.cache import cache
from django.http import HttpRequest
from django.utils.cache import get_cache_key
def expire_page(path):
request = HttpRequest()
request.path = path
key = get_cache_key(request)
if cache.has_key(key):
cache.delete(key)
|
More like this
- New Snippet! by Antoliny0919 1 day, 17 hours ago
- Add Toggle Switch Widget to Django Forms by OgliariNatan 2 months, 3 weeks ago
- get_object_or_none by azwdevops 6 months, 1 week ago
- Mask sensitive data from logger by agusmakmun 8 months, 1 week ago
- Template tag - list punctuation for a list of items by shapiromatron 1 year, 10 months ago
Comments
Please login first before commenting.