Configure caching
stribny opened this issue · 1 comments
stribny commented
We could use e.g. database or Redis caching in development and Redis caching on the server since Redis is already available.
stribny commented
CACHES = {
"default": {
"BACKEND": "django.core.cache.backends.redis.RedisCache",
"LOCATION": env.str("REDIS_URL", default="redis://127.0.0.1:6379?db=1"),
}
}