您好,登录后才能下订单哦!
首先创建线程池:
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);
}
}
工具使用池:
/**
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。