server/settings.py
changeset 15 a3b7c0823378
parent 13 08f34bbc70ee
child 22 609fa711b324
--- a/server/settings.py	Tue Mar 17 16:34:23 2015 +0100
+++ b/server/settings.py	Wed Mar 18 16:13:32 2015 +0100
@@ -79,6 +79,13 @@
     }
 }
 
+CACHES = {
+    'default': {
+        'BACKEND': 'django.core.cache.backends.db.DatabaseCache',
+        'LOCATION': 'cacheTable',
+    }
+}
+
 # Internationalization
 # https://docs.djangoproject.com/en/1.7/topics/i18n/