码迷,mamicode.com
首页 > 其他好文 > 详细

Django Redis

时间:2019-12-29 22:09:15      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:oca   redis   color   engine   end   cli   backend   def   options   

安装

pip install django-redis

配置

CACHES = {
    "default": {
        "BACKEND": "django_redis.cache.RedisCache",
        "LOCATION": "redis://127.0.0.1:6379/1",
        "OPTIONS": {
            "CLIENT_CLASS": "django_redis.client.DefaultClient",
        }
    }
}
SESSION_ENGINE = "django.contrib.sessions.backends.cache"
SESSION_CACHE_ALIAS = "default"

Django Redis

标签:oca   redis   color   engine   end   cli   backend   def   options   

原文地址:https://www.cnblogs.com/Pythonzrq/p/12116634.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!