Code layout change.
[wolnelektury.git] / wolnelektury / settings / cache.py
diff --git a/wolnelektury/settings/cache.py b/wolnelektury/settings/cache.py
deleted file mode 100644 (file)
index a9cc70f..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-CACHES = {
-    'default': {
-        'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
-        'LOCATION': [
-            '127.0.0.1:11211',
-        ]
-    },
-    'ssify': {
-        'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
-        'TIMEOUT': None,
-        'KEY_PREFIX': 'ssify',
-        'LOCATION': [
-            '127.0.0.1:11211',
-        ],
-    },
-}
-
-CACHE_MIDDLEWARE_SECONDS = 24 * 60 * 60