python与java中使用redis集群
Posted lingwang3
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python与java中使用redis集群相关的知识,希望对你有一定的参考价值。
1.python使用
from rediscluster import StrictRedisCluster
redis_nodes = [{‘host‘:‘192.168.78.62‘,‘port‘:"6380"},{‘host‘:‘192.168.78.62‘,‘port‘:"6381" }]
redis_passwd = "xxxxx"
Redis_Client = StrictRedisCluster(startup_nodes=redis_nodes,password=redis_passwd)
2.java使用
private static JedisCluster jedisPoolDB = null;
Set<HostAndPort> nodes = new LinkedHashSet<HostAndPort>();
nodes.add(new HostAndPort(Config.REDIS_IP, Config.REDIS_PORT));
jedisPoolDB = new JedisCluster(nodes, 10 * 1000, 10 * 1000, 3, Config.REDIS_PASSWORD, config);
以上是关于python与java中使用redis集群的主要内容,如果未能解决你的问题,请参考以下文章