django2.0.6 连接使用redis集群
Posted September·
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django2.0.6 连接使用redis集群相关的知识,希望对你有一定的参考价值。
环境需要:
django >= 1.8.x
python 2.7 或者python >= 3.4
安装django-cluster-redis包:
pip install django-redis # 注意 django-redis版本需要 >= 4.7.0
pip install django-cluster-redis
在django项目中的settings文件中:
CACHES = {
‘default‘: {
‘BACKEND‘: ‘django_redis.cache.RedisCache‘,
‘LOCATION‘: [
‘redis节点列表‘,
], # 格式为 redis://IP:PORT/db_index,数据库编号可为空,默认为0号
‘OPTIONS‘: {
‘REDIS_CLIENT_CLASS‘: ‘rediscluster.RedisCluster‘,
‘CONNECTION_POOL_CLASS‘: ‘rediscluster.connection.ClusterConnectionPool‘,
‘CONNECTION_POOL_KWARGS‘: {
‘skip_full_coverage_check‘: True # AWS ElasticCache has disabled CONFIG commands
}
}
}
}
SESSION_ENGINE = ‘django.contrib.sessions.backends.cache‘
SESSION_CACHE_ALIAS = ‘default‘
在view中使用方法:
from django_redis import get_redis_connection conn = get_redis_connection() conn.hgetall(‘key‘) ....
conn对象基本上拥有所有的redis命令。
使用方法为conn.redis命令(参数...)
以上是关于django2.0.6 连接使用redis集群的主要内容,如果未能解决你的问题,请参考以下文章
Django2.0.6-Xadmin后台源码安装流程(python 3.8+django 2.0)