How to make askbot work with memcached?
In the settings.py of production server, I added
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': 'unix:xxx/memcached.sock',
}
}
Also added middleware in the file. memcached is started. But when i tried to run askbot in the production mode, it seems like some files, like css file, javascript file, need to be requested from cache. Some links are like: http://xxx.webfactional.com/m/CACHE/js/85190e85e697.js
But it can't be found in the server side. How to configure memcached for the per-site cache?
Many thanks.
Comments