settings: added memcached config.

Signed-off-by: rscnt <rascnt@gmail.com>
This commit is contained in:
rascencio 2015-05-27 23:22:20 -06:00
parent f1c365116a
commit ff742091c5
1 changed files with 6 additions and 0 deletions

View File

@ -224,6 +224,12 @@ CMS_PLACEHOLDER_CONF = {
}
}
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': 'unix:/tmp/memcached.sock',
}
}
try:
from dynamicweb.local.local_settings import *