X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/b2d342589a7889a3b096e7192453d53bd28eed7d..16358b72e70a109652609551c0ad89aec28fc58b:/src/wolnelektury/settings/cache.py diff --git a/src/wolnelektury/settings/cache.py b/src/wolnelektury/settings/cache.py index 69ce6cb63..fab83259f 100644 --- a/src/wolnelektury/settings/cache.py +++ b/src/wolnelektury/settings/cache.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # @@ -17,6 +16,17 @@ CACHES = { '127.0.0.1:11211', ], }, + 'template_fragments': { + 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache', + 'TIMEOUT': 86400, + 'LOCATION': [ + '127.0.0.1:11211', + ], + }, + 'machina_attachments': { + 'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache', + 'LOCATION': '/tmp', + }, } CACHE_MIDDLEWARE_SECONDS = 24 * 60 * 60