March 2010
1 post
Announcing django-cachebot
“There are only two hard things in Computer Science: cache invalidation and naming things.” —Phil Karlton
Over the past couple weeks I’ve been working on a Django app to do automated caching and invalidation. The basic usage follows like this:
Photo.objects.cache().filter(user=user, status=2)
Anything I would say here would mostly be a repeat of the documentation I wrote,...