vote up 2 vote down star
2

I'm using site wide caching with memcached as the backend. I would like to invalidate pages in the cache when the underlying database object changes.

If the page name changes then I would invalidate the whole cache (as it affects navigation on every page. Clumsy but sufficient for my needs.

If just the page content changes then I'd like to invalidate the cache of just that page.

Is there an easy way to do this?

flag

1 Answer

vote up 2 vote down check

I haven't done a lot of caching with Django, but I think what you want here are signals.

You can set up a post_save signal on the underlying object, and have the callback function invalidate that page in the cache.

from django.core.signals import post_save
from django.core.cache import cache

def invalidate_cache(sender, **kwargs):
    # invalidate cache
    cache.delete(sender.get_absolute_url()) # or any other pertinent keys

post_save.connect(invalidate_cache, sender=UnderlyingModel)

This should properly remove the item from the cache when it is updated.

link|flag
I didn't know about cache.delete Does sender.get_absolute_url() get me the correct cache key? I can't see any documentation on how the site-wide cacheing generates keys. – andybak Apr 17 at 11:27
Does it really works?? – harshh May 20 at 14:17
"By default, Django's cache system creates its cache keys using the requested path (e.g., "/stories/2005/jun/23/bank_robbed/")." (docs.djangoproject.com/en/dev/…) – michuk Sep 20 at 15:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.