我是 redis 新手,在我的多线程应用程序中使用 JedisPool。
JedisPoolConfig config = new JedisPoolConfig();
config.setMaxActive(200);
config.setMaxIdle(200);
pool = new JedisPool(config,"localhost",6379,-1,jedisPasswd);
我想拥有 200 个连接而不会过期,但在任何时候我都没有超过 2 到 3 个连接,我在这里错过了什么吗?
谢谢。