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实例