redis的jedis鏈接池:JedisPool

* 使用:
   1. 建立JedisPool鏈接池對象
   2. 調用方法 getResource()方法獲取Jedis鏈接
    //0.建立一個配置對象
    JedisPoolConfig config = new JedisPoolConfig();
    config.setMaxTotal(50);
    config.setMaxIdle(10);

    //1.建立Jedis鏈接池對象
    JedisPool jedisPool = new JedisPool(config,"localhost",6379);

    //2.獲取鏈接
    Jedis jedis = jedisPool.getResource();
    //3. 使用
    jedis.set("hehe","heihei");redis

    //4. 關閉 歸還到鏈接池中
    jedis.close();

* 鏈接池工具類服務器

/**
JedisPool工具類
加載配置文件,配置鏈接池的參數
提供獲取鏈接的方法

*/
public class JedisPoolUtils {

private static JedisPool jedisPool;

static{
//讀取配置文件
InputStream is = JedisPoolUtils.class.getClassLoader().getResourceAsStream("jedis.properties");
//建立Properties對象
Properties pro = new Properties();
//關聯文件
try {
pro.load(is);
} catch (IOException e) {
e.printStackTrace();
}
//獲取數據,設置到JedisPoolConfig中
JedisPoolConfig config = new JedisPoolConfig();
config.setMaxTotal(Integer.parseInt(pro.getProperty("maxTotal")));
config.setMaxIdle(Integer.parseInt(pro.getProperty("maxIdle")));

//初始化JedisPool
jedisPool = new JedisPool(config,pro.getProperty("host"),Integer.parseInt(pro.getProperty("port")));



}


/**
* 獲取鏈接方法
*/
public static Jedis getJedis(){
return jedisPool.getResource();
}
}

jedis的配置文件ide

host=127.0.0.1 port=6379 maxTotal=50 maxIdle=10

 

jedis的基本配置工具

#最大活動對象數 redis.pool.maxTotal=1000 #最大可以保持idel狀態的對象數 redis.pool.maxIdle=100 #最小可以保持idel狀態的對象數 redis.pool.minIdle=50 #當池內沒有返回對象時,最大等待時間 redis.pool.maxWaitMillis=10000 #當調用borrow Object方法時,是否進行有效性檢查 redis.pool.testOnBorrow=true #當調用return Object方法時,是否進行有效性檢查 redis.pool.testOnReturn=true #「空閒連接」檢測線程,檢測的週期,毫秒數。若是爲負值,表示不運行「檢測線程」。默認爲-1. redis.pool.timeBetweenEvictionRunsMillis=30000 #向調用者輸出「連接」對象時,是否檢測它的空閒超時; redis.pool.testWhileIdle=true # 對於「空閒連接」檢測線程而言,每次檢測的連接資源的個數。默認爲3. redis.pool.numTestsPerEvictionRun=50 #redis服務器的IP redis.ip=xxxxxx #redis服務器的Port redis1.port=6379 
相關文章
相關標籤/搜索