通过jedis完成对redis存取
添加依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-json</artifactId>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
</dependency>
实现代码
Jedis jedis = new Jedis("127.0.0.1",6379);
jedis.set();
jedis.hmset();
jedis.get();
jedis.hgetAll();
jedis.close();
PS:
该方法比较简单,对于实际应用需根据实际场景来选择如何使用redis,此仅为个人练习代码