标签:spool 连接 config source com isp 一个 resource 对象
使用 java操作 redis需要导入jedis的jar包、
jesid连接池: jedisPool
1使用:
1创建jedisPool连接池对象
2调用方法: getResource() 方法获取 jedis链接对象
3//创建一个配置对象
jedispoolComfig config = new jedisPoolConfig():
1config.setMaxtOTal(50);
2configSetIde(10)
//1创建jedis连接池对象
jedisPool jedisPool = new jedispool(config,"ip","port")
//2获取链接
jedis jedis = jedispool.getResource
3使用
jedis,set("key","value")
4//关闭 ,归还到连接池中
jedis.close();
标签:spool 连接 config source com isp 一个 resource 对象
原文地址:https://www.cnblogs.com/qmk-716/p/12236564.html