Uses of Interface
org.springframework.data.redis.connection.StringRedisConnection.StringTuple
Packages that use StringRedisConnection.StringTuple
Package
Description
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
-
Uses of StringRedisConnection.StringTuple in org.springframework.data.redis.connection
Classes in org.springframework.data.redis.connection that implement StringRedisConnection.StringTupleModifier and TypeClassDescriptionclass
Default implementation forStringRedisConnection.StringTuple
interface.Methods in org.springframework.data.redis.connection that return StringRedisConnection.StringTupleModifier and TypeMethodDescription@Nullable StringRedisConnection.StringTuple
Remove and return the value with its score having the highest score from sorted set atkey
.@Nullable StringRedisConnection.StringTuple
Remove and return the value with its score having the lowest score from sorted set atkey
.@Nullable StringRedisConnection.StringTuple
Remove and return the value with its score having the highest score from sorted set atkey
.@Nullable StringRedisConnection.StringTuple
DefaultStringRedisConnection.zRandMemberWithScore
(String key) StringRedisConnection.zRandMemberWithScore
(@NonNull String key) Get random element from sorted set atkey
.Methods in org.springframework.data.redis.connection that return types with arguments of type StringRedisConnection.StringTupleModifier and TypeMethodDescription@Nullable Set<StringRedisConnection.StringTuple>
DefaultStringRedisConnection.zDiffWithScores
(String... sets) StringRedisConnection.zDiffWithScores
(@NonNull String @NonNull ... sets) Diff sortedsets
.@Nullable Set<StringRedisConnection.StringTuple>
DefaultStringRedisConnection.zInterWithScores
(String... sets) @Nullable Set<StringRedisConnection.StringTuple>
DefaultStringRedisConnection.zInterWithScores
(Aggregate aggregate, Weights weights, String... sets) StringRedisConnection.zInterWithScores
(@NonNull String @NonNull ... sets) Intersect sortedsets
.default Set<StringRedisConnection.StringTuple>
StringRedisConnection.zInterWithScores
(@NonNull Aggregate aggregate, int @NonNull [] weights, @NonNull String @NonNull ... sets) Intersect sortedsets
.StringRedisConnection.zInterWithScores
(@NonNull Aggregate aggregate, @NonNull Weights weights, @NonNull String @NonNull ... sets) Intersect sortedsets
.@Nullable Set<StringRedisConnection.StringTuple>
Remove and returncount
values with their score having the highest score from sorted set atkey
.@Nullable Set<StringRedisConnection.StringTuple>
Remove and returncount
values with their score having the lowest score from sorted set atkey
.DefaultStringRedisConnection.zRandMemberWithScores
(String key, long count) StringRedisConnection.zRandMemberWithScores
(@NonNull String key, long count) Getcount
random elements from sorted set atkey
.DefaultStringRedisConnection.zRangeByScoreWithScores
(String key, double min, double max) DefaultStringRedisConnection.zRangeByScoreWithScores
(String key, double min, double max, long offset, long count) StringRedisConnection.zRangeByScoreWithScores
(@NonNull String key, double min, double max) StringRedisConnection.zRangeByScoreWithScores
(@NonNull String key, double min, double max, long offset, long count) DefaultStringRedisConnection.zRangeWithScores
(String key, long start, long end) StringRedisConnection.zRangeWithScores
(@NonNull String key, long start, long end) DefaultStringRedisConnection.zRevRangeByScoreWithScores
(String key, double min, double max) DefaultStringRedisConnection.zRevRangeByScoreWithScores
(String key, double min, double max, long offset, long count) StringRedisConnection.zRevRangeByScoreWithScores
(@NonNull String key, double min, double max) StringRedisConnection.zRevRangeByScoreWithScores
(@NonNull String key, double min, double max, long offset, long count) Get set ofTuple
in range fromstart
toend
where score is betweenmin
andmax
from sorted set ordered high -> low.DefaultStringRedisConnection.zRevRangeWithScores
(String key, long start, long end) StringRedisConnection.zRevRangeWithScores
(@NonNull String key, long start, long end) DefaultStringRedisConnection.zScan
(String key, ScanOptions options) StringRedisConnection.zScan
(@NonNull String key, ScanOptions options) Use aCursor
to iterate over elements in sorted set atkey
.@Nullable Set<StringRedisConnection.StringTuple>
DefaultStringRedisConnection.zUnionWithScores
(String... sets) @Nullable Set<StringRedisConnection.StringTuple>
DefaultStringRedisConnection.zUnionWithScores
(Aggregate aggregate, Weights weights, String... sets) StringRedisConnection.zUnionWithScores
(@NonNull String @NonNull ... sets) Union sortedsets
.default Set<StringRedisConnection.StringTuple>
StringRedisConnection.zUnionWithScores
(@NonNull Aggregate aggregate, int @NonNull [] weights, @NonNull String @NonNull ... sets) Union sortedsets
.StringRedisConnection.zUnionWithScores
(@NonNull Aggregate aggregate, @NonNull Weights weights, @NonNull String @NonNull ... sets) Union sortedsets
.Method parameters in org.springframework.data.redis.connection with type arguments of type StringRedisConnection.StringTupleModifier and TypeMethodDescriptionDefaultStringRedisConnection.zAdd
(String key, Set<StringRedisConnection.StringTuple> tuples) DefaultStringRedisConnection.zAdd
(String key, Set<StringRedisConnection.StringTuple> tuples, RedisZSetCommands.ZAddArgs args) StringRedisConnection.zAdd
(@NonNull String key, Set<StringRedisConnection.StringTuple> tuples) Addtuples
to a sorted set atkey
, or update itsscore
if it already exists.StringRedisConnection.zAdd
(@NonNull String key, Set<StringRedisConnection.StringTuple> tuples, RedisZSetCommands.ZAddArgs args)