说明:使用Jedis必须要jedis的jar包,使用jedis连接池需要用到Apache的pool2jar包
一、使用连接池连接单机版:
//创建一个连接池对象,参数:host:地址 port:端口号
redis.clients.jedis.JedisPool jedispool=new redis.clients.jedis.JedisPool("192.168.146.128", 6379);
//从连接池中得到一个连接,就是一个jedis对象
Jedis redis=jedispool.getResource();
//使用jedis操作redis
redis.set("home", "ay");
//关闭连接:每次使用完毕后关闭连接,连接池回收资源
redis.close();
//关闭连接池:在系统关闭前关闭
jedispool.close();
二、使用jedisCluster对象连接集群:
//创建一个set集合,放集群的IP和端口号,注意是HostAndPort类型的
Set<redis.clients.jedis.HostAndPort> nodes=new HashSet<>();
nodes.add(new redis.clients.jedis.HostAndPort("192.168.146.130", 7001));
nodes.add(new redis.clients.jedis.HostAndPort("192.168.146.130", 7002));
nodes.add(new redis.clients.jedis.HostAndPort("192.168.146.130", 7003));
nodes.add(new redis.clients.jedis.HostAndPort("192.168.146.130", 7004));
nodes.add(new redis.clients.jedis.HostAndPort("192.168.146.130", 7005));
nodes.add(new redis.clients.jedis.HostAndPort("192.168.146.130", 7006));
//创建jedisCluster对象,参数nodes为set类型
redis.clients.jedis.JedisCluster j=new redis.clients.jedis.JedisCluster(nodes);
//使用jedisCluster对象直接操作redis
j.set("name", "zhang");
//在系统关闭前关闭
j.close();