Hỗ trợ cho Redis Sentinel được thêm vào Spring Data Redis 1.4. Nó sẽ có trong Evans RC1 sắp tới, cho phép cấu hình JedisConnectionFactory
để sử dụng JedisSentinelPool
.
RedisSentinelConfiguration sentinelConfig = new RedisSentinelConfiguration()
.master("mymaster")
.sentinel("127.0.0.1", 26379)
.sentinel("127.0.0.1", 26380);
JedisConnectionFactory factory = new JedisConnectionFactory(sentinelConfig);
factory.afterPropertiesSet();
Bạn đã có thể xem bản dựng ảnh chụp nhanh hiện tại:
compile(group: 'org.springframework.data', name: 'spring-data-redis', version: '1.4.0.BUILD-SNAPSHOT')