settings: python-memcache -> pylibmc

This commit is contained in:
rascencio 2015-09-15 10:05:46 -06:00
commit 086e72c5c6
3 changed files with 7 additions and 2 deletions

View file

@ -255,8 +255,8 @@ CMS_PLACEHOLDER_CONF = {
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': 'unix:/tmp/memcached.sock',
'BACKEND': 'django.core.cache.backends.memcached.PyLibMCCache',
'LOCATION': '127.0.0.1:11211',
}
}