Django caching using Redis

PHOTO EMBED

Mon Nov 27 2023 11:41:31 GMT+0000 (Coordinated Universal Time)

Saved by @Utsav #python

# core/settings.py 

# other settings....

CACHES = {
        "default": {
            "BACKEND": "django_redis.cache.RedisCache",
            "LOCATION": "redis://redis:6379/",
            "OPTIONS": {
                "CLIENT_CLASS": "django_redis.client.DefaultClient"
            },
        }
    }
content_copyCOPY

https://tamerlan.dev/django-caching-using-redis/