文件名称:Redis Java客户端Jedis 2.9.0 jar包(含common-pool2)
文件大小:551KB
文件格式:JAR
更新时间:2019-12-08 11:28:39
java redis jedis 2.9.0 common-pool2
Redis的官方推荐Java客户端——Jedis 此Jar包为Jedis 2.9.0版(2016年7月22日发布) 支持Redis 3.0 (亲测有效) 使用方法: import redis.clients.jedis.Jedis; Jedis jedis = new Jedis("localhost"); jedis.set("foo", "bar"); String value = jedis.get("foo"); jedis.close(); System.out.println(value);