PYTHON PIP 安装RedisCluster
时间: 2024-01-04 17:02:36 浏览: 284
搭建RedisCluster(Redis集群)
要在Python中使用RedisCluster,你需要先安装RedisPy和RedisClusterPy模块。你可以使用pip安装这两个模块:
```
pip install redis
pip install redis-py-cluster
```
在安装完成之后,你可以在Python中导入RedisCluster模块并开始使用它,例如:
```
from rediscluster import RedisCluster
startup_nodes = [{"host": "127.0.0.1", "port": "7000"}]
rc = RedisCluster(startup_nodes=startup_nodes, decode_responses=True)
rc.set("foo", "bar")
print(rc.get("foo"))
```
这个例子中,我们连接到本地运行的一个Redis集群节点,在Redis集群中设置一个键值对,并从Redis集群中读取该键的值。
阅读全文