python 连接redis集群
时间: 2023-05-14 07:04:40 浏览: 193
可以使用redis-py-cluster库来连接redis集群,以下是示例代码:
```
from rediscluster import RedisCluster
startup_nodes = [{"host": "127.0.0.1", "port": "7000"},
{"host": "127.0.0.1", "port": "7001"},
{"host": "127.0.0.1", "port": "7002"}]
rc = RedisCluster(startup_nodes=startup_nodes, decode_responses=True)
rc.set("key", "value")
print(rc.get("key"))
```
这段代码会连接到一个包含三个节点的redis集群,并设置一个键值对,然后获取该键的值并打印出来。
相关问题
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表示连接失败。最后,我们根据连接的结果输出相应的提示信息。
python 连接redis集群和单机
可以使用redis-py-cluster库来连接redis集群,使用redis-py库来连接单机。以下是连接redis集群和单机的示例代码:
连接redis集群:
```
from rediscluster import RedisCluster
startup_nodes = [{"host": "127.0.0.1", "port": "7000"}]
rc = RedisCluster(startup_nodes=startup_nodes, decode_responses=True)
rc.set("key", "value")
print
阅读全文