Added memcached cache

This commit is contained in:
M.Ravi 2017-07-04 21:00:00 +02:00
parent 41220ef172
commit 6d7a1d4e4a

View file

@ -7,6 +7,13 @@ DEBUG=False
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211',
}
}
#MANAGERS = ADMINS
REGISTRATION_MESSAGE['message'] = REGISTRATION_MESSAGE['message'].format(host='digitalglarus.ungleich.ch',slug='{slug}')