fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a9cc70f3bed608fe15a9dd2304f7517849edf877
[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