Django 1.8 and other updates.
[wolnelektury.git] / wolnelektury / settings / cache.py
1 CACHES = {
2     'default': {
3         'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
4         'LOCATION': [
5             '127.0.0.1:11211',
6         ]
7     },
8     'ssify': {
9         'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
10         'TIMEOUT': None,
11         'KEY_PREFIX': 'ssify',
12         'LOCATION': [
13             '127.0.0.1:11211',
14         ],
15     },
16 }
17
18 CACHE_MIDDLEWARE_SECONDS = 24 * 60 * 60