- sAdd(CacheKey, V...) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
将一个或多个 member 元素加入到集合 key 当中,已经存在于集合的 member 元素将被忽略。
- sAdd(CacheKey, Collection<V>) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
将一个或多个 member 元素加入到集合 key 当中,已经存在于集合的 member 元素将被忽略。
- sAdd(CacheKey, Object) - 接口 中的方法top.tangyh.basic.cache.repository.CachePlusOps
-
将一个或多个 member 元素加入到集合 key 当中,已经存在于集合的 member 元素将被忽略。
- sAdd(CacheKey, Object) - 类 中的方法top.tangyh.basic.cache.repository.impl.CaffeineOpsImpl
-
- sAdd(CacheKey, Object) - 类 中的方法top.tangyh.basic.cache.repository.impl.RedisOpsImpl
-
- scan(String) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
查找所有符合给定模式 pattern 的 key 。
- scan(String) - 接口 中的方法top.tangyh.basic.cache.repository.CachePlusOps
-
查找所有符合给定模式 pattern 的 key 。
- scan(String) - 类 中的方法top.tangyh.basic.cache.repository.impl.CaffeineOpsImpl
-
- scan(String) - 类 中的方法top.tangyh.basic.cache.repository.impl.RedisOpsImpl
-
- scanUnlink(String) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
批量扫描后删除 匹配到的key
- scanUnlink(String) - 接口 中的方法top.tangyh.basic.cache.repository.CachePlusOps
-
查找所有符合给定模式 pattern 的 key ,并将其删除
例子:
KEYS * 匹配数据库中所有 key 。
- scanUnlink(String) - 类 中的方法top.tangyh.basic.cache.repository.impl.CaffeineOpsImpl
-
- scanUnlink(String) - 类 中的方法top.tangyh.basic.cache.repository.impl.RedisOpsImpl
-
- sCard(CacheKey) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
返回集合 key 的基数(集合中元素的数量)。
- sCard(CacheKey) - 接口 中的方法top.tangyh.basic.cache.repository.CachePlusOps
-
返回集合 key 的基数(集合中元素的数量)。
- sCard(CacheKey) - 类 中的方法top.tangyh.basic.cache.repository.impl.CaffeineOpsImpl
-
- sCard(CacheKey) - 类 中的方法top.tangyh.basic.cache.repository.impl.RedisOpsImpl
-
- sDiff(CacheKey, CacheKey) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
返回一个集合的全部成员,该集合是所有给定集合之间的差集。
- sDiff(Collection<CacheKey>) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
返回一个集合的全部成员,该集合是所有给定集合之间的差集。
- sDiffStore(CacheKey, CacheKey, CacheKey) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
这个命令的作用和 SDIFF key [key …] 类似,但它将结果保存到 destination 集合,而不是简单地返回结果集。
- sDiffStore(Collection<CacheKey>, CacheKey) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
返回一个集合的全部成员,该集合是所有给定集合之间的差集。
- SerializerType - top.tangyh.basic.cache.properties中的枚举
-
序列化类型
- set(String, Object, boolean...) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
将字符串值 value 存放到 key 。
- set(CacheKey, Object, boolean...) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
设置缓存
- set(CacheKey, Object, boolean...) - 接口 中的方法top.tangyh.basic.cache.repository.CacheOps
-
添加到带有 过期时间的 缓存
- set(CacheKey, Object, boolean...) - 类 中的方法top.tangyh.basic.cache.repository.impl.CaffeineOpsImpl
-
- set(CacheKey, Object, boolean...) - 类 中的方法top.tangyh.basic.cache.repository.impl.RedisOpsImpl
-
- setEx(String, Object, Duration, boolean...) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
将键 key 的值设置为 value , 并将键 key 的生存时间设置为 seconds 秒钟。
- setEx(String, Object, long, boolean...) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
将键 key 的值设置为 value , 并将键 key 的生存时间设置为 seconds 秒钟。
- setNx(String, String, boolean...) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
只在键 key 不存在的情况下, 将键 key 的值设置为 value 。
- setRange(String, String, long) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
从偏移量 offset 开始, 用 value 参数覆写(overwrite)键 key 储存的字符串值。
- setXx(String, String, boolean...) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
如果存在key,则设置key以保存字符串值。
- setXx(String, String, long, boolean...) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
如果存在key,则设置key以保存字符串值。
- setXx(String, String, Duration, boolean...) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
如果存在key,则设置key以保存字符串值。
- sInter(CacheKey, CacheKey) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
返回一个集合的全部成员,该集合是所有给定集合的交集。
- sInter(CacheKey, Collection<CacheKey>) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
返回一个集合的全部成员,该集合是所有给定集合的交集。
- sInter(Collection<CacheKey>) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
返回一个集合的全部成员,该集合是所有给定集合的交集。
- sInterStore(CacheKey, CacheKey, CacheKey) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
这个命令类似于 SINTER key [key …] 命令,但它将结果保存到 destination 集合,而不是简单地返回结果集。
- sInterStore(CacheKey, Collection<CacheKey>, CacheKey) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
这个命令类似于 SINTER key [key …] 命令,但它将结果保存到 destination 集合,而不是简单地返回结果集。
- sInterStore(Collection<CacheKey>, CacheKey) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
这个命令类似于 SINTER key [key …] 命令,但它将结果保存到 destination 集合,而不是简单地返回结果集。
- sIsMember(CacheKey, Object) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
判断 member 元素是否集合 key 的成员。
- sMembers(CacheKey) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
返回集合 key 中的所有成员。
- sMembers(CacheKey) - 接口 中的方法top.tangyh.basic.cache.repository.CachePlusOps
-
返回集合 key 中的所有成员。
- sMembers(CacheKey) - 类 中的方法top.tangyh.basic.cache.repository.impl.CaffeineOpsImpl
-
- sMembers(CacheKey) - 类 中的方法top.tangyh.basic.cache.repository.impl.RedisOpsImpl
-
- sMove(CacheKey, CacheKey, V) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
将 member 元素从 source 集合移动到 destination 集合。
- sPop(CacheKey) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
移除并返回集合中的一个随机元素。
- sPop(CacheKey) - 接口 中的方法top.tangyh.basic.cache.repository.CachePlusOps
-
移除并返回集合中的一个随机元素。
- sPop(CacheKey) - 类 中的方法top.tangyh.basic.cache.repository.impl.CaffeineOpsImpl
-
- sPop(CacheKey) - 类 中的方法top.tangyh.basic.cache.repository.impl.RedisOpsImpl
-
- sRandMember(CacheKey) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
返回集合中的一个随机元素。
- sRandMember(CacheKey, long) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
返回集合中的count个随机元素。
- sRandMembers(CacheKey, long) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
返回集合中的count个随机元素。
- sRem(CacheKey, Object...) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
移除集合 key 中的一个或多个 member 元素,不存在的 member 元素会被忽略。
- sRem(CacheKey, Object...) - 接口 中的方法top.tangyh.basic.cache.repository.CachePlusOps
-
移除集合 key 中的一个或多个 member 元素,不存在的 member 元素会被忽略。
- sRem(CacheKey, Object...) - 类 中的方法top.tangyh.basic.cache.repository.impl.CaffeineOpsImpl
-
- sRem(CacheKey, Object...) - 类 中的方法top.tangyh.basic.cache.repository.impl.RedisOpsImpl
-
- stringRedisTemplate(RedisConnectionFactory) - 类 中的方法top.tangyh.basic.cache.RedisAutoConfigure
-
- strLen(String) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
返回键 key 储存的字符串值的长度
- sUnion(CacheKey, CacheKey) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
返回多个集合的并集,多个集合由 keys 指定
不存在的 key 被视为空集。
- sUnion(CacheKey, Collection<CacheKey>) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
返回多个集合的并集,多个集合由 keys 指定
不存在的 key 被视为空集。
- sUnion(Collection<CacheKey>) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
返回多个集合的并集,多个集合由 keys 指定
不存在的 key 被视为空集。
- sUnionStore(CacheKey, CacheKey, CacheKey) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
这个命令类似于 SUNION key [key …] 命令,但它将结果保存到 destination 集合,而不是简单地返回结果集。
- sUnionStore(Collection<CacheKey>, CacheKey) - 类 中的方法top.tangyh.basic.cache.redis.RedisOps
-
这个命令类似于 SUNION key [key …] 命令,但它将结果保存到 destination 集合,而不是简单地返回结果集。