免费观看又色又爽又黄的小说免费_美女福利视频国产片_亚洲欧美精品_美国一级大黄大色毛片

jedispool連redis高并發卡死的問題

java端在使用jedispool 連接redis的時候,在高并發的時候經常死鎖,或報連接異常,JedisConnectionException,或者getResource 異常等各種問題

創新互聯建站是一家集網站建設,平定企業網站建設,平定品牌網站建設,網站定制,平定網站建設報價,網絡營銷,網絡優化,平定網站推廣為一體的創新建站企業,幫助傳統企業提升企業形象加強企業競爭力。可充分滿足這一群體相比中小企業更為豐富、高端、多元的互聯網需求。同時我們時刻保持專業、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學習、思考、沉淀、凈化自己,讓我們為更多的企業打造出實用型網站。

在使用jedispool 的時候一定要注意兩點

1。 在獲取 jedisPool和jedis的時候加上線程同步,保證不要創建過多的jedispool 和 jedis

2。 用完Jedis實例后需要返還給JedisPool

整理了一下redis工具類,通過大量測試和高并發測試的

package com.caspar.util; 
import java.util.concurrent.locks.ReentrantLock;  
import org.apache.log4j.Logger; 
import redis.clients.jedis.Jedis; 
import redis.clients.jedis.JedisPool; 
import redis.clients.jedis.JedisPoolConfig;  
/** 
 * Redis 工具類 
 * @author caspar 
 * 
 */ 
public class RedisUtil { 
   
  protected static ReentrantLock lockPool = new ReentrantLock(); 
  protected static ReentrantLock lockJedis = new ReentrantLock(); 
   
  protected static Logger logger = Logger.getLogger(RedisUtil.class); 
   
  //Redis服務器IP 
  private static String ADDR_ARRAY = FileUtil.getPropertyValue("/properties/redis.properties", "server"); 
   
  //Redis的端口號 
  private static int PORT = FileUtil.getPropertyValueInt("/properties/redis.properties", "port"); 
   
  //訪問密碼 
//  private static String AUTH = FileUtil.getPropertyValue("/properties/redis.properties", "auth"); 
   
  //可用連接實例的最大數目,默認值為8; 
  //如果賦值為-1,則表示不限制;如果pool已經分配了maxActive個jedis實例,則此時pool的狀態為exhausted(耗盡)。 
  private static int MAX_ACTIVE = FileUtil.getPropertyValueInt("/properties/redis.properties", "max_active");; 
   
  //控制一個pool最多有多少個狀態為idle(空閑的)的jedis實例,默認值也是8。 
  private static int MAX_IDLE = FileUtil.getPropertyValueInt("/properties/redis.properties", "max_idle");; 
   
  //等待可用連接的最大時間,單位毫秒,默認值為-1,表示永不超時。如果超過等待時間,則直接拋出JedisConnectionException; 
  private static int MAX_WAIT = FileUtil.getPropertyValueInt("/properties/redis.properties", "max_wait");; 
 
  //超時時間 
  private static int TIMEOUT = FileUtil.getPropertyValueInt("/properties/redis.properties", "timeout");; 
   
  //在borrow一個jedis實例時,是否提前進行validate操作;如果為true,則得到的jedis實例均是可用的; 
  private static boolean TEST_ON_BORROW = FileUtil.getPropertyValueBoolean("/properties/redis.properties", "test_on_borrow");; 
   
  private static JedisPool jedisPool = null; 
   
  /** 
   * redis過期時間,以秒為單位 
   */ 
  public final static int EXRP_HOUR = 60*60;     //一小時 
  public final static int EXRP_DAY = 60*60*24;    //一天 
  public final static int EXRP_MONTH = 60*60*24*30;  //一個月 
   
  /** 
   * 初始化Redis連接池 
   */ 
  private static void initialPool(){ 
    try { 
      JedisPoolConfig config = new JedisPoolConfig(); 
      config.setMaxTotal(MAX_ACTIVE); 
      config.setMaxIdle(MAX_IDLE); 
      config.setMaxWaitMillis(MAX_WAIT); 
      config.setTestOnBorrow(TEST_ON_BORROW); 
      jedisPool = new JedisPool(config, ADDR_ARRAY.split(",")[0], PORT, TIMEOUT); 
    } catch (Exception e) { 
      logger.error("First create JedisPool error : "+e); 
      try{ 
        //如果第一個IP異常,則訪問第二個IP 
        JedisPoolConfig config = new JedisPoolConfig(); 
        config.setMaxTotal(MAX_ACTIVE); 
        config.setMaxIdle(MAX_IDLE); 
        config.setMaxWaitMillis(MAX_WAIT); 
        config.setTestOnBorrow(TEST_ON_BORROW); 
        jedisPool = new JedisPool(config, ADDR_ARRAY.split(",")[1], PORT, TIMEOUT); 
      }catch(Exception e2){ 
        logger.error("Second create JedisPool error : "+e2); 
      } 
    } 
  } 
   
   
  /** 
   * 在多線程環境同步初始化 
   */ 
  private static void poolInit() { 
    //斷言 ,當前鎖是否已經鎖住,如果鎖住了,就啥也不干,沒鎖的話就執行下面步驟 
    assert ! lockPool.isHeldByCurrentThread();  
    lockPool.lock(); 
    try {  
      if (jedisPool == null) {  
        initialPool(); 
      } 
    }catch(Exception e){ 
      e.printStackTrace(); 
    } finally {  
      lockPool.unlock(); 
    } 
  } 
   
   
  public static Jedis getJedis() { 
    //斷言 ,當前鎖是否已經鎖住,如果鎖住了,就啥也不干,沒鎖的話就執行下面步驟 
    assert ! lockJedis.isHeldByCurrentThread();  
    lockJedis.lock(); 
     
    if (jedisPool == null) {  
      poolInit(); 
    } 
    Jedis jedis = null; 
    try {  
      if (jedisPool != null) {  
        jedis = jedisPool.getResource();  
      } 
    } catch (Exception e) {  
      logger.error("Get jedis error : "+e); 
    }finally{ 
      returnResource(jedis); 
      lockJedis.unlock(); 
    } 
    return jedis; 
  }  
   
   
  /** 
   * 釋放jedis資源 
   * @param jedis 
   */ 
  public static void returnResource(final Jedis jedis) { 
    if (jedis != null && jedisPool !=null) { 
      jedisPool.returnResource(jedis); 
    } 
  } 
 
  /** 
   * 設置 String 
   * @param key 
   * @param value 
   */ 
  public synchronized static void setString(String key ,String value){ 
    try { 
      value = StringUtil.isEmpty(value) ? "" : value; 
      getJedis().set(key,value); 
    } catch (Exception e) { 
      logger.error("Set key error : "+e); 
    } 
  } 
   
  /** 
   * 設置 過期時間 
   * @param key 
   * @param seconds 以秒為單位 
   * @param value 
   */ 
  public synchronized static void setString(String key ,int seconds,String value){ 
    try { 
      value = StringUtil.isEmpty(value) ? "" : value; 
      getJedis().setex(key, seconds, value); 
    } catch (Exception e) { 
      logger.error("Set keyex error : "+e); 
    } 
  } 
   
  /** 
   * 獲取String值 
   * @param key 
   * @return value 
   */ 
  public synchronized static String getString(String key){ 
    if(getJedis() == null || !getJedis().exists(key)){ 
      return null; 
    } 
    return getJedis().get(key); 
  }    
} 

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持創新互聯。

網站欄目:jedispool連redis高并發卡死的問題
標題路徑:http://m.newbst.com/article46/jedehg.html

成都網站建設公司_創新互聯,為您提供虛擬主機自適應網站移動網站建設品牌網站設計網站營銷動態網站

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

小程序開發