-
jedis-2.5.2.jar下载
资源介绍
redis jar包官方
package test;
import redis.clients.jedis.Jedis;
public class redisdemo {
@SuppressWarnings("resource")
public static void main(String[] args) {
// TODO Auto-generated method stub
Jedis test = new Jedis("127.0.0.1",6379);
test.set("hw","hello world");
String hello = test.get("hw");
System.out.println(hello);
}
}