重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
首先创建线程池:
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年积累的成都做网站、成都网站制作经验,可以快速应对客户对网站的新想法和需求。提供各种问题对应的解决方案。让选择我们的客户得到更好、更有力的网络服务。我虽然不认识你,你也不认识我。但先制作网站后付款的网站建设流程,更有七台河免费网站建设让你可以放心的选择与我们合作。
工具使用池:
/**