当前位置: 代码迷 >> 综合 >> JedisPool Could not get a resource from the pool
  详细解决方案

JedisPool Could not get a resource from the pool

热度:74   发布时间:2023-09-20 02:40:31.0

redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool

JedisPoolConfig jpc = new JedisPoolConfig();

jpc.setMaxMillionSec(1000*60);//这里设置的没起作用

JedisPool jp = new JedisPool("192.168.1.100",6379,100,"admin");

jedispool设置的connect time太短了,默认是100ms

jedis.close()还回池子jedis实例

  相关解决方案