Support til Redis Sentinel er tilføjet til Spring Data Redis 1.4. Det vil være i den kommende Evans RC1, hvilket muliggør konfiguration af JedisConnectionFactory
at gøre brug af 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();
Du kan allerede se det aktuelle snapshot-build:
compile(group: 'org.springframework.data', name: 'spring-data-redis', version: '1.4.0.BUILD-SNAPSHOT')