Jedis连接池:JedisPool
作者:互联网
Jedis连接池:JedisPool
*commons-pool2-2.3jar:连接池
*jedis-2.7.0.jar:客户端
使用:
0.创建一个配置对象
JedisPoolConfig config=new JedisPoolConfig()
config.setMaxTotal(50);//可以对连接池进行配置
config.setMaxIdel(60);
1.创建JedisPool连接池对象
JedisPool jedisPool=new JedisPool(config,"localhost",6379)
2.调用方法getResource()方法获取Jedis连接
Jedis jedis=jedisPool.getResource()
3.操作
jedis.set("username","zhanagsan")
4. 归还连接
jedis.close()
标签:getResource,JedisPool,Jedis,jedis,config,连接池 来源: https://www.cnblogs.com/miwaiwai/p/16349154.html