3

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

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

我想拥有 200 个连接而不会过期,但在任何时候我都没有超过 2 到 3 个连接,我在这里错过了什么吗?

谢谢。

4

1 回答 1

3

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

于 2012-04-11T20:57:43.630 回答