警告
本文最后更新于 2020-10-18 19:21,文中内容可能已过时。
中文文档:https://django-redis-chs.readthedocs.io/zh_CN/latest/
1.安装django-redis
pip install redis django-redis
2.配置settings.py
1
2
3
4
5
6
7
8
9
10
11
| CACHES = {
"default": {
"BACKEND": "django_redis.cache.RedisCache",
"LOCATION": "redis://127.0.0.1:6379/1",
"OPTIONS": {
"CLIENT_CLASS": "django_redis.client.DefaultClient",
"CONNECTION_POOL_KWARGS": {"max_connections": 100},
"PASSWORD": "",
}
}
}
|
3.使用
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| from django_redis import get_redis_connection
# 从连接池获取一个连接
redis_conn = get_redis_connection('default')
# 设置key
redis_conn.set()
# 获取key
redis_conn.get()
# 清除所有库的所有key
redis_conn.flushall()
# 清除当前库的所有key
redis_conn.flushdb()
|
4.将redis做为django的session存储
修改settings.py
1
2
| SESSION_ENGINE = "django.contrib.sessions.backends.cache"
SESSION_CACHE_ALIAS = "default"
|