settings.py
1 CACHES = { 2 "default": { 3 "BACKEND": "django_redis.cache.RedisCache", 4 "LOCATION": "redis://192.168.10.129:6379/0", 5 "OPTIONS": { 6 "CLIENT_CLASS": "django_redis.client.DefaultClient", 7 "CONNECTION_POOL_KWARGS": {"max_connections": 100}, 8 "PASSWORD": "123456", 9 } 10 } 11 } 12 13 SESSION_ENGINE = "django.contrib.sessions.backends.cache" 14 SESSION_CACHE_ALIAS = "default"