diff --git a/iati/settings/base.py b/iati/settings/base.py index 941fe8627..5f504c65b 100644 --- a/iati/settings/base.py +++ b/iati/settings/base.py @@ -643,12 +643,12 @@ # Caches CACHES = { 'default': { - 'BACKEND': 'django.core.cache.backends.db.DatabaseCache', + 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', 'LOCATION': 'wagtail_cache', 'TIMEOUT': 86400, }, 'renditions': { - 'BACKEND': 'django.core.cache.backends.db.DatabaseCache', + 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', 'LOCATION': 'wagtail_renditions_cache', 'TIMEOUT': 86400, }