jredis使用小结

redis作为一个跨语言的缓存解决方案,客户端的实现可以采用多种语言,由于目前项目主要使用java偏多,所以着重了解了下redis的Java客户端。
目前redis的java客户端有两种, jdbc-redisjredis,从redis官方wiki上以及多种资料上的综合评价,jdbc-redis性能较差,目前主流的Java客户端还是jredis。

官方地址 http://code.google.com/p/jredis/

使用jredis连接redis服务器端,主要有两种方式,参考代码

连接方式一:
JRedis jredis = new JRedisClient("192.168.1.238", 6380);
if(jredis.exists("name")){
	jredis.get("name");
}
redis.quit();


连接方式二:
static JRedisService jredisService =  null;
static{
	ConnectionSpec connectionSpec = DefaultConnectionSpec.newSpec("192.168.1.238", 6380, 0,null);
	connectionSpec.setReconnectCnt(100);
	connectionSpec.setHeartbeat(2);
	jredisService = new JRedisService(connectionSpec, 10);
}
jredisService.get("name");

你可能感兴趣的:(java,redis,jdbc,Google)