python 鏈接 redis cluster 集羣

一. redis集羣模式有多種, cluster模式只是其中的一種實現方式, 其原理請自行谷歌或者百度, 這裏只舉例如何使用Python操做 redis cluster 集羣node

 

二. python 鏈接 redis cluster 集羣python

  第三方庫:redis

    redis-py-cluster: 最近還在維護數據庫

    rediscluster: 彷佛好久沒有更新了spa

pip install redis-py-cluster
or
pip install rediscluster
from rediscluster import StrictRedisCluster

# redis cluster 集羣最少三主三從 startup_nodes
= [ {"host":"192.168.3.25", "port":6379}, # 主 {"host":"192.168.3.25", "port":7001}, # 6379的從數據庫 {"host":"192.168.3.25", "port":6380}, # 主 {"host":"192.168.3.25", "port":7002}, # 6380的從數據庫 {"host":"192.168.3.25", "port":6381}, # 主 {"host":"192.168.3.25", "port":7003} # 6381的從數據庫 ]

# 鏈接集羣 conn
= StrictRedisCluster(startup_nodes=startup_nodes, decode_responses=True)
conn.set(
'name', 'lowman') conn.set('kind', '屌絲')
conn.set('money', '3塊8')
print("My name is: ", conn.get('name')) print "I have money: ", conn.get('money')

其餘的各項操做方法與 python 的 redis 庫保持一致. startup_nodes 參數中即便存在 錯誤節點參數 也能鏈接成功: 理論上, 只要保證有一個節點參數正確就能夠正常鏈接code

相關文章
相關標籤/搜索