django  settings中的配置

# 缓存
CACHES = {
"default": {
"BACKEND": "django_redis.cache.RedisCache",
"LOCATION": "redis://127.0.0.1:6379",
"OPTIONS": {
"CLIENT_CLASS": "django_redis.client.DefaultClient",
"CONNECTION_POOL_KWARGS": {"max_connections": 100}
}
}
}

django中views中的配置

Redis缓存在django中的配置-LMLPHP

Redis缓存在django中的配置-LMLPHP

Redis缓存在django中的配置-LMLPHP

05-07 12:09