- RedisAutoConfigure - com.github.zuihou.cache中的类
-
redis 配置类
- RedisAutoConfigure() - 类 的构造器com.github.zuihou.cache.RedisAutoConfigure
-
- RedisDistributedLock() - 类 中的方法com.github.zuihou.cache.CaffeineAutoConfigure
-
为了解决演示环境启动报错而加的类
- RedisDistributedLock - com.github.zuihou.cache.lock中的类
-
redis分布式锁实现
- RedisDistributedLock(RedisTemplate<String, Object>) - 类 的构造器com.github.zuihou.cache.lock.RedisDistributedLock
-
- RedisDistributedLock(RedisTemplate<String, Object>) - 类 中的方法com.github.zuihou.cache.RedisAutoConfigure
-
分布式锁
- RedisObjectSerializer - com.github.zuihou.cache.utils中的类
-
此时定义的序列化操作表示可以序列化所有类的对象,当然,这个对象所在的类一定要实现序列化接口
- RedisObjectSerializer() - 类 的构造器com.github.zuihou.cache.utils.RedisObjectSerializer
-
- redisRepository() - 类 中的方法com.github.zuihou.cache.CaffeineAutoConfigure
-
caffeine 持久库
- redisRepository(RedisTemplate<String, Object>) - 类 中的方法com.github.zuihou.cache.RedisAutoConfigure
-
redis 持久库
- RedisRepositoryImpl - com.github.zuihou.cache.repository中的类
-
Redis Repository
redis 基本操作 可扩展,基本够用了
- RedisRepositoryImpl(RedisTemplate<String, Object>) - 类 的构造器com.github.zuihou.cache.repository.RedisRepositoryImpl
-
- redisTemplate(RedisConnectionFactory) - 类 中的方法com.github.zuihou.cache.RedisAutoConfigure
-
RedisTemplate配置
- releaseLock(String) - 类 中的方法com.github.zuihou.cache.lock.CaffeineDistributedLock
-
- releaseLock(String) - 类 中的方法com.github.zuihou.cache.lock.RedisDistributedLock
-
- remove(String, long, Object) - 类 中的方法com.github.zuihou.cache.repository.RedisRepositoryImpl
-
redis List数据结构 : 根据参数 i 的值,移除列表中与参数 value 相等的元素
- rightPop(String) - 类 中的方法com.github.zuihou.cache.repository.RedisRepositoryImpl
-
redis List数据结构 : 移除并返回列表 key 的末尾元素
- rightPush(String, Object) - 类 中的方法com.github.zuihou.cache.repository.RedisRepositoryImpl
-
redis List数据结构 :将一个或多个值 value 插入到列表 key 的表尾(最右边)。