是redis的新手,在我的多线程应用中使用了JedisPool。
JedisPoolConfig config = new JedisPoolConfig();
config.setMaxActive(200);
config.setMaxIdle(200);
pool = new JedisPool(config,"localhost",6379,-1,jedisPasswd);
我希望有200个连接,但是在任何时候都没有过期 时间我没有超过2到3个连接,我是否会错过任何内容 这里。
感谢。
答案 0 :(得分:3)
您是否尝试过使用setMinIdle()?