fnp
/
edumed.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
missing template
[edumed.git]
/
edumed
/
settings
/
cache.py
1
# -*- coding: utf-8 -*-
2
3
CACHES = {
4
'default': {
5
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
6
'LOCATION': '127.0.0.1:11211',
7
'KEY_PREFIX': 'edumed',
8
}
9
}
10
11
CACHE_MIDDLEWARE_ANONYMOUS_ONLY = True