Ask Your Question
0

How do I configure memcached for Django 1.3?

asked 2012-07-24 23:25:23 -0500

Joseph gravatar image Joseph
303 12 3 19

The default caching doesn't work. (There are numerous issues due to it.)

memcached is recommended. However, the settings.py is for Django <= 1.2 caching.

How do you configure memcached for Django 1.3?

delete close flag offensive retag edit

1 Answer

Sort by ยป oldest newest most voted
1

answered 2012-07-24 23:27:17 -0500

Joseph gravatar image Joseph
303 12 3 19

updated 2012-07-26 12:40:22 -0500

[I will update these instructions if Evgeny tells me otherwise.]

Follow the memcache setup instructions described here: http://docs.webfaction.com/software/memcached.html and make sure python-memcached is installed.

Then, put the following in your settings.py:

CACHES = {
    'default': {
        'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
        'LOCATION': 'unix:/home/USERNAME/memcached.sock',
        'TIMEOUT': 18000,
        'KEY_PREFIX': 'askbot',
    }
}
CACHE_TIMEOUT = 18000
CACHE_MIDDLEWARE_ANONYMOUS_ONLY = True

And disable the current CACHE_BACKEND. (The second CACHE_TIMEOUT is necessary because of a small bug.)

Also, disable the following middleware:

'django.middleware.cache.UpdateCacheMiddleware',
'django.middleware.cache.FetchFromCacheMiddleware',

Otherwise you will get errors, like entire pages being cached when they shouldn't.

link publish delete flag offensive edit

Your answer

Please start posting your answer anonymously - your answer will be saved within the current session and published after you log in or create a new account. Please try to give a substantial answer, for discussions, please use comments and please do remember to vote (after you log in)!

[hide preview]

Reliable Askbot Hosting

Create your Q&A site at askbot.com. Managed Askbot hosting at just $15/mo. Dedicated hosting, support contracts, consulting services.

create your Q&A site
30 days free trial

Question tools

Follow

subscribe to rss feed

Stats

Asked: 2012-07-24 23:25:23 -0500

Seen: 109 times

Last updated: Jul 26 '12