主從複製 - redis主從, java客戶端使用jedis連接master,讀取請求會被路由到slave嗎?
仅有的幸福
仅有的幸福 2017-05-16 13:20:21
0
1
1117

redis主從,實現類似mysql的讀寫分離效果。在程式碼層面需要執行slave host嗎?
目前是透過jedis客戶端JedisSentinelPool連接哨兵集群,查看日誌輸出應該連接的是master的host
讀取請求會自動路由到slave嗎?

仅有的幸福
仅有的幸福

全部回覆(1)
淡淡烟草味

主的配置好ip和端口,從的配置好Slaveof的master地址和端口號,哨兵監控master的ip和端口號,java代碼直接master的name和密碼就行了。
`

public static void main(String[] args) {

    Set<String> sentinels = new HashSet<String>();
     String hostAndPort1 = "127.0.0.1:26379";
     String hostAndPort2 = "127.0.0.1:26380";
    sentinels.add(hostAndPort1);
    sentinels.add(hostAndPort2);

    String clusterName = "mymaster";
     String password = "123456";

     JedisSentinelPool redisSentinelJedisPool = new JedisSentinelPool(clusterName,sentinels,password);

    Jedis jedis = null;
     try {
         jedis = redisSentinelJedisPool.getResource();

         System.out.println(jedis.get("key"));
     } catch (Exception e) {
         e.printStackTrace();
     } finally {
         redisSentinelJedisPool.returnBrokenResource(jedis);
    }

    redisSentinelJedisPool.close();

`

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!