
redis
文章平均质量分 50
redis
「已注销」
这个作者很懒,什么都没留下…
展开
-
springboot使用jedis(jedispool)、lettuce
一、pom.xml配置<!-- redis --><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId></dependency><!-- jedis 客户端 --><dependency> &l原创 2021-06-03 15:21:43 · 1977 阅读 · 0 评论 -
redisson实现分布式锁
package com.leadpms.qianlistandard.web.rest;import org.redisson.Redisson;import org.redisson.api.RLock;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.data.redis.core.RedisTemplate;import org.springframework..原创 2021-06-02 16:16:43 · 320 阅读 · 0 评论 -
springboot引入Redis配置JedisPool连接池
一、pom.xml引入<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId></dependency><!--如果使用lettuce连接池的话就不用导入jedis--><dependency> <gro原创 2021-06-01 23:52:09 · 6922 阅读 · 3 评论