Blog Archive for July 1, 2011

Django Page Cache

July 1, 2011

This entry covers how to enable page level caching in Django. We'll be using a dummy cache backend for development, and the file based store for production. Memcached would be faster, but I'm on a memory limited VPS.

settings_common.py

In have a common settings file that is shared between production …

Tags: django cache