Uses of Interface
org.springframework.data.redis.support.collections.RedisZSet
Packages that use RedisZSet
Package
Description
Package providing implementations for most of the
java.util
collections on top of Redis.-
Uses of RedisZSet in org.springframework.data.redis.support.collections
Classes in org.springframework.data.redis.support.collections that implement RedisZSetMethods in org.springframework.data.redis.support.collections that return RedisZSetModifier and TypeMethodDescriptionstatic <E> RedisZSet<E>
RedisZSet.create
(String key, RedisOperations<String, E> operations) Constructs a newRedisZSet
instance with a default score of 1.static <E> RedisZSet<E>
RedisZSet.create
(String key, RedisOperations<String, E> operations, double defaultScore) Constructs a newRedisZSet
instance.DefaultRedisZSet.diffAndStore
(Collection<? extends RedisZSet<?>> sets, String destKey) DefaultRedisZSet.diffAndStore
(RedisZSet<?> set, String destKey) RedisZSet.diffAndStore
(Collection<? extends RedisZSet<?>> sets, String destKey) RedisZSet.diffAndStore
(RedisZSet<?> set, String destKey) DefaultRedisZSet.intersectAndStore
(Collection<? extends RedisZSet<?>> sets, String destKey) DefaultRedisZSet.intersectAndStore
(RedisZSet<?> set, String destKey) RedisZSet.intersectAndStore
(Collection<? extends RedisZSet<?>> sets, String destKey) RedisZSet.intersectAndStore
(RedisZSet<?> set, String destKey) DefaultRedisZSet.remove
(long start, long end) RedisZSet.remove
(long start, long end) Remove elements in range betweenstart
andend
from sorted set.DefaultRedisZSet.removeByScore
(double min, double max) RedisZSet.removeByScore
(double min, double max) Remove elements with scores betweenmin
andmax
from sorted set with the bound key.DefaultRedisZSet.unionAndStore
(Collection<? extends RedisZSet<?>> sets, String destKey) DefaultRedisZSet.unionAndStore
(RedisZSet<?> set, String destKey) RedisZSet.unionAndStore
(Collection<? extends RedisZSet<?>> sets, String destKey) RedisZSet.unionAndStore
(RedisZSet<?> set, String destKey) Methods in org.springframework.data.redis.support.collections with parameters of type RedisZSetModifier and TypeMethodDescriptionDiff this set and anotherRedisZSet
.DefaultRedisZSet.diffAndStore
(RedisZSet<?> set, String destKey) RedisZSet.diffAndStore
(RedisZSet<?> set, String destKey) DefaultRedisZSet.diffWithScores
(RedisZSet<?> set) RedisZSet.diffWithScores
(RedisZSet<?> set) Diff this set and anotherRedisZSet
.Intersect this set and anotherRedisZSet
.DefaultRedisZSet.intersectAndStore
(RedisZSet<?> set, String destKey) RedisZSet.intersectAndStore
(RedisZSet<?> set, String destKey) DefaultRedisZSet.intersectWithScores
(RedisZSet<?> set) RedisZSet.intersectWithScores
(RedisZSet<?> set) Intersect this set and anotherRedisZSet
.Union this set and anotherRedisZSet
.DefaultRedisZSet.unionAndStore
(RedisZSet<?> set, String destKey) RedisZSet.unionAndStore
(RedisZSet<?> set, String destKey) DefaultRedisZSet.unionWithScores
(RedisZSet<?> set) RedisZSet.unionWithScores
(RedisZSet<?> set) Union this set and anotherRedisZSet
.Method parameters in org.springframework.data.redis.support.collections with type arguments of type RedisZSetModifier and TypeMethodDescriptionDefaultRedisZSet.diff
(Collection<? extends RedisZSet<?>> sets) RedisZSet.diff
(Collection<? extends RedisZSet<?>> sets) Diff this set and otherRedisZSet
s.DefaultRedisZSet.diffAndStore
(Collection<? extends RedisZSet<?>> sets, String destKey) RedisZSet.diffAndStore
(Collection<? extends RedisZSet<?>> sets, String destKey) DefaultRedisZSet.diffWithScores
(Collection<? extends RedisZSet<?>> sets) RedisZSet.diffWithScores
(Collection<? extends RedisZSet<?>> sets) Diff this set and otherRedisZSet
s.DefaultRedisZSet.intersect
(Collection<? extends RedisZSet<?>> sets) RedisZSet.intersect
(Collection<? extends RedisZSet<?>> sets) Intersect this set and otherRedisZSet
s.DefaultRedisZSet.intersectAndStore
(Collection<? extends RedisZSet<?>> sets, String destKey) RedisZSet.intersectAndStore
(Collection<? extends RedisZSet<?>> sets, String destKey) DefaultRedisZSet.intersectWithScores
(Collection<? extends RedisZSet<?>> sets) RedisZSet.intersectWithScores
(Collection<? extends RedisZSet<?>> sets) Intersect this set and otherRedisZSet
s.DefaultRedisZSet.union
(Collection<? extends RedisZSet<?>> sets) RedisZSet.union
(Collection<? extends RedisZSet<?>> sets) Union this set and otherRedisZSet
s.DefaultRedisZSet.unionAndStore
(Collection<? extends RedisZSet<?>> sets, String destKey) RedisZSet.unionAndStore
(Collection<? extends RedisZSet<?>> sets, String destKey) DefaultRedisZSet.unionWithScores
(Collection<? extends RedisZSet<?>> sets) RedisZSet.unionWithScores
(Collection<? extends RedisZSet<?>> sets) Union this set and otherRedisZSet
s.