jedis使用-pool池(2,9版本)
首先创建线程池:
public voidredisPool() {
if(Const.jedisPoolCommon==null){
JedisPoolConfig config = new JedisPoolConfig();
//最大连接数, 默认8个
config.setMaxTotal(redisPoolMaxActive);
//最大空闲连接数, 默认8个
config.setMaxIdle(redisPoolMaxIdle);
//获取连接时的最大等待毫秒数
config.setMaxWaitMillis(100000);
//最小空闲连接数, 默认0
config.setMinIdle(redisPoolMinIdle);
//连接耗尽时是否阻塞, false报异常,ture阻塞直到超时, 默认true
config.setBlockWhenExhausted(true);
config.setTestOnBorrow(TEST_ON_BORROW);
Const.jedisPoolCommon = new JedisPool(config,host,port,timeout,password);
}
}
10年积累的成都做网站、成都网站制作经验,可以快速应对客户对网站的新想法和需求。提供各种问题对应的解决方案。让选择我们的客户得到更好、更有力的网络服务。我虽然不认识你,你也不认识我。但先制作网站后付款的网站建设流程,更有七台河免费网站建设让你可以放心的选择与我们合作。
工具使用池:
/**
- 列表添加为例
- @param k
- @param v
*/
public void rightPush(String k,String v){
Jedis jedis = null;
try{
jedis=Const.jedisPoolCommon.getResource();
jedis.select(commdbIndex);
jedis.rpush(k,v);
}catch (Exception ex){
logger.error("rightPush异常"+ex);
}finally {
if(jedis!=null){//关闭回收到线程池
jedis.close();
}
}
}
文章名称:jedis使用-pool池(2,9版本)
URL分享:http://pwwzsj.com/article/psgcij.html