python 连接redis集群设置超时时间
时间: 2023-09-27 22:05:49 浏览: 115
python设定并获取socket超时时间的方法
在 Python 中连接 Redis 集群并设置超时时间可以使用 redis-py-cluster 库。
首先,安装 redis-py-cluster 库:
```
pip install redis-py-cluster
```
然后,连接 Redis 集群并设置超时时间:
```python
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"}
]
# 设置连接超时时间为 5 秒
redis_cluster = RedisCluster(startup_nodes=startup_nodes, socket_timeout=5)
# 使用 redis_cluster 进行操作
redis_cluster.set("key", "value")
```
在上面的代码中,我们通过 RedisCluster 类连接 Redis 集群,并设置 socket_timeout 参数为 5 秒。这样,在连接 Redis 集群时,如果连接超时,则会抛出 redis.exceptions.TimeoutError 异常。
阅读全文