Switch from Memcached to Redis

This commit is contained in:
Danielle McLean 2017-10-24 22:22:56 +11:00
parent f6b316dcfa
commit 1670b6d427
Signed by: 00dani
GPG key ID: 5A5D2D1AFF12EEC5
3 changed files with 17 additions and 3 deletions

View file

@ -111,8 +111,8 @@ WSGI_APPLICATION = 'lemoncurry.wsgi.application'
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211',
'BACKEND': 'redis_cache.RedisCache',
'LOCATION': '127.0.0.1:6380',
}
}