Use remote cache

This commit is contained in:
George Lacey 2022-10-05 16:51:51 +01:00
parent cde6c1d288
commit b03b4fadce

View File

@ -125,7 +125,7 @@ DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
CACHES = {
"default": {
"BACKEND": "django_redis.cache.RedisCache",
"LOCATION": "redis://127.0.0.1:6379/1",
"LOCATION": "redis://cache.george.ooo:6379/1",
"OPTIONS": {
"CLIENT_CLASS": "django_redis.client.DefaultClient"
},