sql >> データベース >  >> NoSQL >> Redis

Spring Data Redis(1.3.2.RELEASE)はjedisのJedisSentinelPoolをサポートしていますか?

    Spring DataRedis1.4にRedisSentinelのサポートが追加されました。これは次のEvansRC1に含まれ、JedisConnectionFactoryの構成が可能になります。 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();
    

    現在のスナップショットビルドをすでに確認できます:

    compile(group: 'org.springframework.data', name: 'spring-data-redis', version: '1.4.0.BUILD-SNAPSHOT')
    



    1. 一般的なMongoDBインタビューの質問

    2. マングース(Nodejs)の複数化ルールとは何ですか?

    3. HDFSディスクバランサーの紹介、操作、機能

    4. 春のデータを使用してmongoでjsファイルを実行する方法