aboutsummaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/settings.py b/settings.py
index 0d513f3..805d764 100644
--- a/settings.py
+++ b/settings.py
@@ -230,3 +230,10 @@ CELERYBEAT_SCHEDULE = {
}
from local_settings import *
+
+CACHES['comptia'] = {
+ 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
+ 'LOCATION': '127.0.0.1:11211',
+ 'TIMEOUT': 60*60*24,
+ 'KEY_PREFIX': 'comptia_'
+}