mirror of
https://github.com/Balshgit/public.git
synced 2025-09-11 18:00:42 +03:00
17 lines
405 B
Python
17 lines
405 B
Python
# Caching
|
|
# https://docs.djangoproject.com/en/2.2/topics/cache/
|
|
|
|
CACHES = {
|
|
'default': {
|
|
# TODO: use some other cache in production,
|
|
# like https://github.com/jazzband/django-redis
|
|
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
|
},
|
|
}
|
|
|
|
|
|
# django-axes
|
|
# https://django-axes.readthedocs.io/en/latest/4_configuration.html#configuring-caches
|
|
|
|
AXES_CACHE = 'default'
|