前言:在上一文中,我講到了---如何搭建redis集羣---讓集羣擁有分片的數據內存的擴容和哨兵的高可用。今天給你們講解一下Spring如何整合Redis集羣java
在這裏首先給你們說一說分片和哨兵的特色:node
而集羣確包含了分片和哨兵的二者的優勢,既實現了內存數據的擴容,也實現了redis的高可用,並且集羣確保了一個或必定數量的redis宕機,也可以讓程序正常的運行,這也是爲何咱們運用的集羣,而不是分片或哨兵。
--------廢話有點多啊,下面進入今天的主題linux
sh start.sh
以後ps -ef |grep redis
檢測全部的redis服務器是否開啓redis
<!--spring整合redis --> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-redis</artifactId> </dependency>
@Test public void testCluster() { Set<HostAndPort> nodes = new HashSet<HostAndPort>(); nodes.add(new HostAndPort("192.168.126.166",7000)); nodes.add(new HostAndPort("192.168.126.166",7001)); nodes.add(new HostAndPort("192.168.126.166",7002)); nodes.add(new HostAndPort("192.168.126.166",7003)); nodes.add(new HostAndPort("192.168.126.166",7004)); nodes.add(new HostAndPort("192.168.126.166",7005)); JedisCluster jedisCluster = new JedisCluster(nodes); jedisCluster.set("redisCluster","集羣測試"); System.out.println(jedisCluster.get("redisCluster")); }
測試結果以下:spring
測試成功!!!服務器
#標識IP地址和端口號信息 IP:PORT redis.node=192.168.126.166:6379 redis.nodes=192.168.126.166:6379,192.168.126.166:6380,192.168.126.166:6381 redis.sentinel=192.168.126.166:26379 redis.cluster=192.168.126.166:7000,192.168.126.166:7001,192.168.126.166:7002,192.168.126.166:7003,192.168.126.166:7004,192.168.126.166:7005
//標識配置類 @Configuration @PropertySource("classpath:/properties/redis.properties") public class JedisConfig { //集羣 @Value("${redis.cluster}") private String nodes; @Bean public JedisCluster jedisCluster() { Set<HostAndPort> nodeSet = new HashSet<HostAndPort>(); String[] nodeArray = nodes.split(","); for(String node : nodeArray) {//node=host:port String host = node.split(":")[0]; int port = Integer.parseInt(node.split(":")[1]); HostAndPort hostAndPort = new HostAndPort(host,port); nodeSet.add(hostAndPort); } return new JedisCluster(nodeSet); } }
最後進行測試,測試成功,那就Spring整合Redis集羣成功!!!測試
3月25日改:
有朋友發私信問我該如何去測試,其實這個很簡單。
你能夠先查詢那幾臺服務器中哪些是主機,而後宕掉其中的一臺redis-cli -p 7000 shutdown
,再十秒以後再去訪問頁面(在此以前你能夠去看看7000主機的從機,如今是不是主機的了--redis-cli -p 7003
>>>再輸入info replication
),
若是可以正常的訪問,說明
你整合Redis集羣成功了,能夠正常運行!!spa
如若你還有什麼問題評論私信皆可!!!.net