Django’s cache framework | Django documentation | Django

PHOTO EMBED

Sun Nov 26 2023 10:54:49 GMT+0000 (Coordinated Universal Time)

Saved by @coder14

CACHES = {
    "default": {
        "BACKEND": "django.core.cache.backends.redis.RedisCache",
        "LOCATION": "redis://127.0.0.1:6379",
    }
}
content_copyCOPY

redis

https://docs.djangoproject.com/en/4.2/topics/cache/