python连接redis集群
时间: 2023-11-02 19:55:10 浏览: 157
Python与Redis的连接教程
在Python中连接Redis集群,可以使用第三方库redis-py-cluster。这个库是专门为了支持Redis集群操作而设计的,并且一直在维护。你可以使用pip进行安装,命令是pip3 install redis-py-cluster。
以下是一个示例代码,展示了如何使用redis-py-cluster连接Redis集群:
```
from rediscluster import StrictRedisCluster
# 连接redis集群
class RedisCluster(object):
def __init__(self,conn_list):
self.conn_list = conn_list
def connect(self):
try:
# 非密码连接redis集群
# redisconn = StrictRedisCluster(startup_nodes=self.conn_list)
# 使用密码连接redis集群
redisconn = StrictRedisCluster(startup_nodes=self.conn_list, password='123456')
return redisconn
except Exception as e:
print(e)
print("错误,连接redis集群失败")
return False
# Redis集群连接列表
redis_basis_conn = [{'host': '192.168.10.168', 'port': 7201},
{'host': '192.168.10.169', 'port': 7201},
{'host': '192.168.10.170', 'port': 7201},
{'host': '192.168.10.171', 'port': 7201},
{'host': '192.168.10.142', 'port': 7201},
{'host': '192.168.10.143', 'port': 7201}]
# 连接Redis集群
res = RedisCluster(redis_basis_conn).connect()
# 检查连接结果
if not res:
print("连接Redis集群失败")
else:
print("连接Redis集群成功")
```
使用redis-py-cluster库,你可以通过传入连接列表中的所有节点信息来连接Redis集群。在上述示例代码中,我们使用了一个名为RedisCluster的类来进行连接,并在初始化方法中传入了连接列表。然后,在connect方法中,我们尝试连接Redis集群,如果连接成功,返回一个Redis连接对象,否则返回False表示连接失败。最后,我们根据连接的结果输出相应的提示信息。
阅读全文