import redis.clients.jedis.Jedis;
public class LinkRedis {
private Jedis jedis = null;
private static LinkRedis linkRedis = null;
private LinkRedis() {
}
public static LinkRedis getLinkPedis() {
if (null == linkRedis) {
return new LinkRedis();
} else {
return linkRedis;
}
}
public Jedis getJedis() {
if (jedis == null) {
jedis = new Jedis("192.168.154.129", 6379);
//设置密码
jedis.auth("password");
}
return jedis;
}
public void close() {
if (jedis != null) {
jedis.close();
}
}
public static void main(String[] args) {
Jedis jedis = LinkRedis.getLinkPedis().getJedis();
System.out.println("连接成功");
// 查看服务是否运行
System.out.println("服务正在运行: " + jedis.ping());
jedis.close();
}
}
redis in action 一些基本操作 连接数据库
最新推荐文章于 2022-07-04 00:00:34 发布