JedisPool连接数问题

时间:2011-06-07 08:26:20

标签: java redis pool

是redis的新手,在我的多线程应用中使用了JedisPool。

 JedisPoolConfig config = new JedisPoolConfig();
 config.setMaxActive(200);
 config.setMaxIdle(200);
 pool = new JedisPool(config,"localhost",6379,-1,jedisPasswd);

我希望有200个连接,但是在任何时候都没有过期 时间我没有超过2到3个连接,我是否会错过任何内容 这里。

感谢。

1 个答案:

答案 0 :(得分:3)

您是否尝试过使用setMinIdle()?