首先需要在pom文件中引入Jedis依赖
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.9.0</version>
</dependency>
单例模式下 直接实例化 有密码的话 需要配置一下密码
(这里的IP 、端口号、密码都是从配置中心获取的)
int realPort = Integer.parseInt(redisPort);
Jedis jedis = new Jedis(redisIp, realPort);
jedis.auth(redisPassword);
当redis是哨兵模式时,由于redis集群总线接口需要对集群中的其他节点开放,而命令端口和集群总线端口的偏移量为10000,因此个人理解当redis为3台哨兵的时候,开放的端口总是27379或者是26379。实例化JedisSentinelPool,然后使用getResource()获取实例化的Jedis。kobe为哨兵模式下master节点的名字。
JedisSentinelPool有很多构造方法,你也可以在实例化JedisSentinelPool的时候指定redis的最大连接数,超时时间,指定数据库等等配置。
Set<String> sentinels = new HashSet<>();
sentinels.add("192.168.23.24:27379");
sentinels.add("192.168.23.25:27379");
sentinels.add("192.168.23.26:27379");
JedisSentinelPool jedisPool = new JedisSentinelPool("kobe", sentinels, redisPassword);
Jedis jedis = jedisPool.getResource();
拿到Jiedis实例后,就可以对连接上的redis数据库,进行一些你想要的操作,例如批量插入/删除KEY。
Pipeline pipeline = jedis.pipelined();
IntStream.range(0, 50000).forEach(it -> pipeline.set("batch" + it, it + ""));
pipeline.syncAndReturnAll();
操作结束,代码最后要记得关流
jedis.close();
if (jedisPool != null) {
jedisPool.close();
}