K - Key type.V - Value type.public interface RedisSortedSetReactiveCommands<K,V>
| Modifier and Type | Method and Description |
|---|---|
Mono<KeyValue<K,ScoredValue<V>>> |
bzpopmax(long timeout,
K... keys)
Removes and returns a member with the highest scores in the sorted set stored at one of the keys.
|
Mono<KeyValue<K,ScoredValue<V>>> |
bzpopmin(long timeout,
K... keys)
Removes and returns a member with the lowest scores in the sorted set stored at one of the keys.
|
Mono<Long> |
zadd(K key,
double score,
V member)
Add one or more members to a sorted set, or update its score if it already exists.
|
Mono<Long> |
zadd(K key,
Object... scoresAndValues)
Add one or more members to a sorted set, or update its score if it already exists.
|
Mono<Long> |
zadd(K key,
ScoredValue<V>... scoredValues)
Add one or more members to a sorted set, or update its score if it already exists.
|
Mono<Long> |
zadd(K key,
ZAddArgs zAddArgs,
double score,
V member)
Add one or more members to a sorted set, or update its score if it already exists.
|
Mono<Long> |
zadd(K key,
ZAddArgs zAddArgs,
Object... scoresAndValues)
Add one or more members to a sorted set, or update its score if it already exists.
|
Mono<Long> |
zadd(K key,
ZAddArgs zAddArgs,
ScoredValue<V>... scoredValues)
Add one or more members to a sorted set, or update its score if it already exists.
|
Mono<Double> |
zaddincr(K key,
double score,
V member)
Add one or more members to a sorted set, or update its score if it already exists applying the
INCR option. |
Mono<Double> |
zaddincr(K key,
ZAddArgs zAddArgs,
double score,
V member)
Add one or more members to a sorted set, or update its score if it already exists applying the
INCR option. |
Mono<Long> |
zcard(K key)
Get the number of members in a sorted set.
|
Mono<Long> |
zcount(K key,
double min,
double max)
Deprecated.
|
Mono<Long> |
zcount(K key,
Range<? extends Number> range)
Count the members in a sorted set with scores within the given
Range. |
Mono<Long> |
zcount(K key,
String min,
String max)
Deprecated.
|
Mono<Double> |
zincrby(K key,
double amount,
V member)
Increment the score of a member in a sorted set.
|
Mono<Long> |
zinterstore(K destination,
K... keys)
Intersect multiple sorted sets and store the resulting sorted set in a new key.
|
Mono<Long> |
zinterstore(K destination,
ZStoreArgs storeArgs,
K... keys)
Intersect multiple sorted sets and store the resulting sorted set in a new key.
|
Mono<Long> |
zlexcount(K key,
Range<? extends V> range)
Count the number of members in a sorted set between a given lexicographical range.
|
Mono<Long> |
zlexcount(K key,
String min,
String max)
Deprecated.
|
Mono<ScoredValue<V>> |
zpopmax(K key)
Removes and returns up to count members with the highest scores in the sorted set stored at key.
|
Flux<ScoredValue<V>> |
zpopmax(K key,
long count)
Removes and returns up to count members with the highest scores in the sorted set stored at key.
|
Mono<ScoredValue<V>> |
zpopmin(K key)
Removes and returns up to count members with the lowest scores in the sorted set stored at key.
|
Flux<ScoredValue<V>> |
zpopmin(K key,
long count)
Removes and returns up to count members with the lowest scores in the sorted set stored at key.
|
Flux<V> |
zrange(K key,
long start,
long stop)
Return a range of members in a sorted set, by index.
|
Mono<Long> |
zrange(ValueStreamingChannel<V> channel,
K key,
long start,
long stop)
Return a range of members in a sorted set, by index.
|
Flux<V> |
zrangebylex(K key,
Range<? extends V> range)
Return a range of members in a sorted set, by lexicographical range.
|
Flux<V> |
zrangebylex(K key,
Range<? extends V> range,
Limit limit)
Return a range of members in a sorted set, by lexicographical range.
|
Flux<V> |
zrangebylex(K key,
String min,
String max)
Deprecated.
|
Flux<V> |
zrangebylex(K key,
String min,
String max,
long offset,
long count)
Deprecated.
|
Flux<V> |
zrangebyscore(K key,
double min,
double max)
Deprecated.
|
Flux<V> |
zrangebyscore(K key,
double min,
double max,
long offset,
long count)
Deprecated.
|
Flux<V> |
zrangebyscore(K key,
Range<? extends Number> range)
Return a range of members in a sorted set, by score.
|
Flux<V> |
zrangebyscore(K key,
Range<? extends Number> range,
Limit limit)
Return a range of members in a sorted set, by score.
|
Flux<V> |
zrangebyscore(K key,
String min,
String max)
Deprecated.
|
Flux<V> |
zrangebyscore(K key,
String min,
String max,
long offset,
long count)
Deprecated.
|
Mono<Long> |
zrangebyscore(ValueStreamingChannel<V> channel,
K key,
double min,
double max)
Deprecated.
|
Mono<Long> |
zrangebyscore(ValueStreamingChannel<V> channel,
K key,
double min,
double max,
long offset,
long count)
|
Mono<Long> |
zrangebyscore(ValueStreamingChannel<V> channel,
K key,
Range<? extends Number> range)
Stream over a range of members in a sorted set, by score.
|
Mono<Long> |
zrangebyscore(ValueStreamingChannel<V> channel,
K key,
Range<? extends Number> range,
Limit limit)
Stream over a range of members in a sorted set, by score.
|
Mono<Long> |
zrangebyscore(ValueStreamingChannel<V> channel,
K key,
String min,
String max)
Deprecated.
|
Mono<Long> |
zrangebyscore(ValueStreamingChannel<V> channel,
K key,
String min,
String max,
long offset,
long count)
|
Flux<ScoredValue<V>> |
zrangebyscoreWithScores(K key,
double min,
double max)
Deprecated.
|
Flux<ScoredValue<V>> |
zrangebyscoreWithScores(K key,
double min,
double max,
long offset,
long count)
Deprecated.
|
Flux<ScoredValue<V>> |
zrangebyscoreWithScores(K key,
Range<? extends Number> range)
Return a range of members with score in a sorted set, by score.
|
Flux<ScoredValue<V>> |
zrangebyscoreWithScores(K key,
Range<? extends Number> range,
Limit limit)
Return a range of members with score in a sorted set, by score.
|
Flux<ScoredValue<V>> |
zrangebyscoreWithScores(K key,
String min,
String max)
Deprecated.
|
Flux<ScoredValue<V>> |
zrangebyscoreWithScores(K key,
String min,
String max,
long offset,
long count)
Deprecated.
|
Mono<Long> |
zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
double min,
double max)
|
Mono<Long> |
zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
double min,
double max,
long offset,
long count)
|
Mono<Long> |
zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
Range<? extends Number> range)
Stream over a range of members with scores in a sorted set, by score.
|
Mono<Long> |
zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
Range<? extends Number> range,
Limit limit)
Stream over a range of members with scores in a sorted set, by score.
|
Mono<Long> |
zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
String min,
String max)
|
Mono<Long> |
zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
String min,
String max,
long offset,
long count)
|
Flux<ScoredValue<V>> |
zrangeWithScores(K key,
long start,
long stop)
Return a range of members with scores in a sorted set, by index.
|
Mono<Long> |
zrangeWithScores(ScoredValueStreamingChannel<V> channel,
K key,
long start,
long stop)
Stream over a range of members with scores in a sorted set, by index.
|
Mono<Long> |
zrank(K key,
V member)
Determine the index of a member in a sorted set.
|
Mono<Long> |
zrem(K key,
V... members)
Remove one or more members from a sorted set.
|
Mono<Long> |
zremrangebylex(K key,
Range<? extends V> range)
Remove all members in a sorted set between the given lexicographical range.
|
Mono<Long> |
zremrangebylex(K key,
String min,
String max)
Deprecated.
|
Mono<Long> |
zremrangebyrank(K key,
long start,
long stop)
Remove all members in a sorted set within the given indexes.
|
Mono<Long> |
zremrangebyscore(K key,
double min,
double max)
Deprecated.
|
Mono<Long> |
zremrangebyscore(K key,
Range<? extends Number> range)
Remove all members in a sorted set within the given scores.
|
Mono<Long> |
zremrangebyscore(K key,
String min,
String max)
Deprecated.
|
Flux<V> |
zrevrange(K key,
long start,
long stop)
Return a range of members in a sorted set, by index, with scores ordered from high to low.
|
Mono<Long> |
zrevrange(ValueStreamingChannel<V> channel,
K key,
long start,
long stop)
Stream over a range of members in a sorted set, by index, with scores ordered from high to low.
|
Flux<V> |
zrevrangebylex(K key,
Range<? extends V> range)
Return a range of members in a sorted set, by lexicographical range ordered from high to low.
|
Flux<V> |
zrevrangebylex(K key,
Range<? extends V> range,
Limit limit)
Return a range of members in a sorted set, by lexicographical range ordered from high to low.
|
Flux<V> |
zrevrangebyscore(K key,
double max,
double min)
Deprecated.
|
Flux<V> |
zrevrangebyscore(K key,
double max,
double min,
long offset,
long count)
Deprecated.
|
Flux<V> |
zrevrangebyscore(K key,
Range<? extends Number> range)
Return a range of members in a sorted set, by score, with scores ordered from high to low.
|
Flux<V> |
zrevrangebyscore(K key,
Range<? extends Number> range,
Limit limit)
Return a range of members in a sorted set, by score, with scores ordered from high to low.
|
Flux<V> |
zrevrangebyscore(K key,
String max,
String min)
Deprecated.
|
Flux<V> |
zrevrangebyscore(K key,
String max,
String min,
long offset,
long count)
Deprecated.
|
Mono<Long> |
zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
double max,
double min)
Deprecated.
|
Mono<Long> |
zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
double max,
double min,
long offset,
long count)
Deprecated.
|
Mono<Long> |
zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
Range<? extends Number> range)
Stream over a range of members in a sorted set, by score, with scores ordered from high to low.
|
Mono<Long> |
zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
Range<? extends Number> range,
Limit limit)
Stream over a range of members in a sorted set, by score, with scores ordered from high to low.
|
Mono<Long> |
zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
String max,
String min)
Deprecated.
|
Mono<Long> |
zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
String max,
String min,
long offset,
long count)
Deprecated.
|
Flux<ScoredValue<V>> |
zrevrangebyscoreWithScores(K key,
double max,
double min)
Deprecated.
|
Flux<ScoredValue<V>> |
zrevrangebyscoreWithScores(K key,
double max,
double min,
long offset,
long count)
Deprecated.
|
Flux<ScoredValue<V>> |
zrevrangebyscoreWithScores(K key,
Range<? extends Number> range)
Return a range of members with scores in a sorted set, by score, with scores ordered from high to low.
|
Flux<ScoredValue<V>> |
zrevrangebyscoreWithScores(K key,
Range<? extends Number> range,
Limit limit)
Return a range of members with scores in a sorted set, by score, with scores ordered from high to low.
|
Flux<ScoredValue<V>> |
zrevrangebyscoreWithScores(K key,
String max,
String min)
Deprecated.
|
Flux<ScoredValue<V>> |
zrevrangebyscoreWithScores(K key,
String max,
String min,
long offset,
long count)
Deprecated.
|
Mono<Long> |
zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
double max,
double min)
|
Mono<Long> |
zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
double max,
double min,
long offset,
long count)
|
Mono<Long> |
zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
Range<? extends Number> range)
Stream over a range of members with scores in a sorted set, by score, with scores ordered from high to low.
|
Mono<Long> |
zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
Range<? extends Number> range,
Limit limit)
Stream over a range of members with scores in a sorted set, by score, with scores ordered from high to low.
|
Mono<Long> |
zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
String max,
String min)
|
Mono<Long> |
zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
String max,
String min,
long offset,
long count)
|
Flux<ScoredValue<V>> |
zrevrangeWithScores(K key,
long start,
long stop)
Return a range of members with scores in a sorted set, by index, with scores ordered from high to low.
|
Mono<Long> |
zrevrangeWithScores(ScoredValueStreamingChannel<V> channel,
K key,
long start,
long stop)
Stream over a range of members with scores in a sorted set, by index, with scores ordered from high to low.
|
Mono<Long> |
zrevrank(K key,
V member)
Determine the index of a member in a sorted set, with scores ordered from high to low.
|
Mono<ScoredValueScanCursor<V>> |
zscan(K key)
Incrementally iterate sorted sets elements and associated scores.
|
Mono<ScoredValueScanCursor<V>> |
zscan(K key,
ScanArgs scanArgs)
Incrementally iterate sorted sets elements and associated scores.
|
Mono<ScoredValueScanCursor<V>> |
zscan(K key,
ScanCursor scanCursor)
Incrementally iterate sorted sets elements and associated scores.
|
Mono<ScoredValueScanCursor<V>> |
zscan(K key,
ScanCursor scanCursor,
ScanArgs scanArgs)
Incrementally iterate sorted sets elements and associated scores.
|
Mono<StreamScanCursor> |
zscan(ScoredValueStreamingChannel<V> channel,
K key)
Incrementally iterate sorted sets elements and associated scores.
|
Mono<StreamScanCursor> |
zscan(ScoredValueStreamingChannel<V> channel,
K key,
ScanArgs scanArgs)
Incrementally iterate sorted sets elements and associated scores.
|
Mono<StreamScanCursor> |
zscan(ScoredValueStreamingChannel<V> channel,
K key,
ScanCursor scanCursor)
Incrementally iterate sorted sets elements and associated scores.
|
Mono<StreamScanCursor> |
zscan(ScoredValueStreamingChannel<V> channel,
K key,
ScanCursor scanCursor,
ScanArgs scanArgs)
Incrementally iterate sorted sets elements and associated scores.
|
Mono<Double> |
zscore(K key,
V member)
Get the score associated with the given member in a sorted set.
|
Mono<Long> |
zunionstore(K destination,
K... keys)
Add multiple sorted sets and store the resulting sorted set in a new key.
|
Mono<Long> |
zunionstore(K destination,
ZStoreArgs storeArgs,
K... keys)
Add multiple sorted sets and store the resulting sorted set in a new key.
|
Mono<KeyValue<K,ScoredValue<V>>> bzpopmin(long timeout, K... keys)
timeout - the timeout in seconds.keys - the keys.Mono<KeyValue<K,ScoredValue<V>>> bzpopmax(long timeout, K... keys)
timeout - the timeout in seconds.keys - the keys.Mono<Long> zadd(K key, double score, V member)
key - the keyscore - the scoremember - the memberMono<Long> zadd(K key, Object... scoresAndValues)
key - the keyscoresAndValues - the scoresAndValue tuples (score,value,score,value,...)Mono<Long> zadd(K key, ScoredValue<V>... scoredValues)
key - the keyscoredValues - the scored valuesMono<Long> zadd(K key, ZAddArgs zAddArgs, double score, V member)
key - the keyzAddArgs - arguments for zaddscore - the scoremember - the memberMono<Long> zadd(K key, ZAddArgs zAddArgs, Object... scoresAndValues)
key - the keyzAddArgs - arguments for zaddscoresAndValues - the scoresAndValue tuples (score,value,score,value,...)Mono<Long> zadd(K key, ZAddArgs zAddArgs, ScoredValue<V>... scoredValues)
key - the kezAddArgs - arguments for zaddscoredValues - the scored valuesMono<Double> zaddincr(K key, double score, V member)
INCR option. ZADD
acts like ZINCRBY.key - the keyscore - the scoremember - the memberMono<Double> zaddincr(K key, ZAddArgs zAddArgs, double score, V member)
INCR option. ZADD
acts like ZINCRBY.key - the keyzAddArgs - arguments for zaddscore - the scoremember - the memberMono<Long> zcard(K key)
key - the keykey
does not exist.@Deprecated Mono<Long> zcount(K key, double min, double max)
zcount(java.lang.Object, Range)key - the keymin - min scoremax - max score@Deprecated Mono<Long> zcount(K key, String min, String max)
zcount(java.lang.Object, Range)key - the keymin - min scoremax - max scoreMono<Long> zcount(K key, Range<? extends Number> range)
Range.key - the keyrange - the rangeMono<Double> zincrby(K key, double amount, V member)
key - the keyamount - the increment type: longmember - the member type: valuemember (a double precision floating point number), represented
as string.Mono<Long> zinterstore(K destination, K... keys)
destination - the destinationkeys - the keysdestination.Mono<Long> zinterstore(K destination, ZStoreArgs storeArgs, K... keys)
destination - the destinationstoreArgs - the storeArgskeys - the keysdestination.@Deprecated Mono<Long> zlexcount(K key, String min, String max)
zlexcount(java.lang.Object, Range)key - the keymin - min scoremax - max scoreMono<Long> zlexcount(K key, Range<? extends V> range)
key - the keyrange - the rangeMono<ScoredValue<V>> zpopmin(K key)
key - the keyFlux<ScoredValue<V>> zpopmin(K key, long count)
key - the key.count - the number of elements to return.Mono<ScoredValue<V>> zpopmax(K key)
key - the keyFlux<ScoredValue<V>> zpopmax(K key, long count)
key - the key.count - the number of elements to return.Flux<V> zrange(K key, long start, long stop)
key - the keystart - the startstop - the stopMono<Long> zrange(ValueStreamingChannel<V> channel, K key, long start, long stop)
channel - streaming channel that receives a call for every valuekey - the keystart - the startstop - the stopFlux<ScoredValue<V>> zrangeWithScores(K key, long start, long stop)
key - the keystart - the startstop - the stopMono<Long> zrangeWithScores(ScoredValueStreamingChannel<V> channel, K key, long start, long stop)
channel - streaming channel that receives a call for every valuekey - the keystart - the startstop - the stop@Deprecated Flux<V> zrangebylex(K key, String min, String max)
zrangebylex(java.lang.Object, Range)key - the keymin - min scoremax - max scoreFlux<V> zrangebylex(K key, Range<? extends V> range)
key - the keyrange - the range@Deprecated Flux<V> zrangebylex(K key, String min, String max, long offset, long count)
zrangebylex(java.lang.Object, Range)key - the keymin - min scoremax - max scoreoffset - the offsetcount - the countFlux<V> zrangebylex(K key, Range<? extends V> range, Limit limit)
key - the keyrange - the rangelimit - the limit@Deprecated Flux<V> zrangebyscore(K key, double min, double max)
zrangebyscore(java.lang.Object, Range)key - the keymin - min scoremax - max score@Deprecated Flux<V> zrangebyscore(K key, String min, String max)
zrangebyscore(java.lang.Object, Range)key - the keymin - min scoremax - max scoreFlux<V> zrangebyscore(K key, Range<? extends Number> range)
key - the keyrange - the range@Deprecated Flux<V> zrangebyscore(K key, double min, double max, long offset, long count)
zrangebyscore(java.lang.Object, Range, Limit)key - the keymin - min scoremax - max scoreoffset - the offsetcount - the count@Deprecated Flux<V> zrangebyscore(K key, String min, String max, long offset, long count)
zrangebyscore(java.lang.Object, Range, Limit)key - the keymin - min scoremax - max scoreoffset - the offsetcount - the countFlux<V> zrangebyscore(K key, Range<? extends Number> range, Limit limit)
key - the keyrange - the rangelimit - the limit@Deprecated Mono<Long> zrangebyscore(ValueStreamingChannel<V> channel, K key, double min, double max)
zrangebyscore(ValueStreamingChannel, java.lang.Object, Range)channel - streaming channel that receives a call for every valuekey - the keymin - min scoremax - max score@Deprecated Mono<Long> zrangebyscore(ValueStreamingChannel<V> channel, K key, String min, String max)
zrangebyscore(ValueStreamingChannel, java.lang.Object, Range)channel - streaming channel that receives a call for every valuekey - the keymin - min scoremax - max scoreMono<Long> zrangebyscore(ValueStreamingChannel<V> channel, K key, Range<? extends Number> range)
channel - streaming channel that receives a call for every valuekey - the keyrange - the range@Deprecated Mono<Long> zrangebyscore(ValueStreamingChannel<V> channel, K key, double min, double max, long offset, long count)
channel - streaming channel that receives a call for every valuekey - the keymin - min scoremax - max scoreoffset - the offsetcount - the count@Deprecated Mono<Long> zrangebyscore(ValueStreamingChannel<V> channel, K key, String min, String max, long offset, long count)
channel - streaming channel that receives a call for every valuekey - the keymin - min scoremax - max scoreoffset - the offsetcount - the countMono<Long> zrangebyscore(ValueStreamingChannel<V> channel, K key, Range<? extends Number> range, Limit limit)
channel - streaming channel that receives a call for every valuekey - the keyrange - the rangelimit - the limit@Deprecated Flux<ScoredValue<V>> zrangebyscoreWithScores(K key, double min, double max)
zrangebyscoreWithScores(java.lang.Object, Range)key - the keymin - min scoremax - max score@Deprecated Flux<ScoredValue<V>> zrangebyscoreWithScores(K key, String min, String max)
zrangebyscoreWithScores(java.lang.Object, Range)key - the keymin - min scoremax - max scoreFlux<ScoredValue<V>> zrangebyscoreWithScores(K key, Range<? extends Number> range)
key - the keyrange - the range@Deprecated Flux<ScoredValue<V>> zrangebyscoreWithScores(K key, double min, double max, long offset, long count)
zrangebyscoreWithScores(java.lang.Object, Range, Limit limit)key - the keymin - min scoremax - max scoreoffset - the offsetcount - the count@Deprecated Flux<ScoredValue<V>> zrangebyscoreWithScores(K key, String min, String max, long offset, long count)
zrangebyscoreWithScores(java.lang.Object, Range, Limit)key - the keymin - min scoremax - max scoreoffset - the offsetcount - the countFlux<ScoredValue<V>> zrangebyscoreWithScores(K key, Range<? extends Number> range, Limit limit)
key - the keyrange - the rangelimit - the limit@Deprecated Mono<Long> zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, double min, double max)
channel - streaming channel that receives a call for every scored valuekey - the keymin - min scoremax - max score@Deprecated Mono<Long> zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, String min, String max)
channel - streaming channel that receives a call for every scored valuekey - the keymin - min scoremax - max scoreMono<Long> zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Range<? extends Number> range)
channel - streaming channel that receives a call for every scored valuekey - the keyrange - the range@Deprecated Mono<Long> zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, double min, double max, long offset, long count)
zrangebyscoreWithScores(ScoredValueStreamingChannel, java.lang.Object, Range, Limit limit)channel - streaming channel that receives a call for every scored valuekey - the keymin - min scoremax - max scoreoffset - the offsetcount - the count@Deprecated Mono<Long> zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, String min, String max, long offset, long count)
zrangebyscoreWithScores(ScoredValueStreamingChannel, java.lang.Object, Range, Limit limit)channel - streaming channel that receives a call for every scored valuekey - the keymin - min scoremax - max scoreoffset - the offsetcount - the countMono<Long> zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Range<? extends Number> range, Limit limit)
channel - streaming channel that receives a call for every scored valuekey - the keyrange - the rangelimit - the limitMono<Long> zrank(K key, V member)
key - the keymember - the member type: valuemember. If member does not exist in the sorted set or key
does not exist,Mono<Long> zrem(K key, V... members)
key - the keymembers - the member type: value@Deprecated Mono<Long> zremrangebylex(K key, String min, String max)
zremrangebylex(java.lang.Object, Range)key - the keymin - min scoremax - max scoreMono<Long> zremrangebylex(K key, Range<? extends V> range)
key - the keyrange - the rangeMono<Long> zremrangebyrank(K key, long start, long stop)
key - the keystart - the start type: longstop - the stop type: long@Deprecated Mono<Long> zremrangebyscore(K key, double min, double max)
zremrangebyscore(java.lang.Object, Range)key - the keymin - min scoremax - max score@Deprecated Mono<Long> zremrangebyscore(K key, String min, String max)
zremrangebyscore(java.lang.Object, Range)key - the keymin - min scoremax - max scoreMono<Long> zremrangebyscore(K key, Range<? extends Number> range)
key - the keyrange - the rangeFlux<V> zrevrange(K key, long start, long stop)
key - the keystart - the startstop - the stopMono<Long> zrevrange(ValueStreamingChannel<V> channel, K key, long start, long stop)
channel - streaming channel that receives a call for every scored valuekey - the keystart - the startstop - the stopFlux<ScoredValue<V>> zrevrangeWithScores(K key, long start, long stop)
key - the keystart - the startstop - the stopMono<Long> zrevrangeWithScores(ScoredValueStreamingChannel<V> channel, K key, long start, long stop)
channel - streaming channel that receives a call for every scored valuekey - the keystart - the startstop - the stopFlux<V> zrevrangebylex(K key, Range<? extends V> range)
key - the keyrange - the rangeFlux<V> zrevrangebylex(K key, Range<? extends V> range, Limit limit)
key - the keyrange - the rangelimit - the limit@Deprecated Flux<V> zrevrangebyscore(K key, double max, double min)
zrevrangebyscore(java.lang.Object, Range)key - the keymin - min scoremax - max score@Deprecated Flux<V> zrevrangebyscore(K key, String max, String min)
zrevrangebyscore(java.lang.Object, Range)key - the keymin - min scoremax - max scoreFlux<V> zrevrangebyscore(K key, Range<? extends Number> range)
key - the keyrange - the range@Deprecated Flux<V> zrevrangebyscore(K key, double max, double min, long offset, long count)
zrevrangebyscore(java.lang.Object, Range, Limit)key - the keymax - max scoremin - min scoreoffset - the withscorescount - the null@Deprecated Flux<V> zrevrangebyscore(K key, String max, String min, long offset, long count)
zrevrangebyscore(java.lang.Object, Range, Limit)key - the keymax - max scoremin - min scoreoffset - the offsetcount - the countFlux<V> zrevrangebyscore(K key, Range<? extends Number> range, Limit limit)
key - the keyrange - the rangelimit - the limit@Deprecated Mono<Long> zrevrangebyscore(ValueStreamingChannel<V> channel, K key, double max, double min)
zrevrangebyscore(java.lang.Object, Range)channel - streaming channel that receives a call for every valuekey - the keymax - max scoremin - min score@Deprecated Mono<Long> zrevrangebyscore(ValueStreamingChannel<V> channel, K key, String max, String min)
zrevrangebyscore(java.lang.Object, Range)channel - streaming channel that receives a call for every valuekey - the keymin - min scoremax - max scoreMono<Long> zrevrangebyscore(ValueStreamingChannel<V> channel, K key, Range<? extends Number> range)
channel - streaming channel that receives a call for every valuekey - the keyrange - the range@Deprecated Mono<Long> zrevrangebyscore(ValueStreamingChannel<V> channel, K key, double max, double min, long offset, long count)
zrevrangebyscoreWithScores(java.lang.Object, Range, Limit)channel - streaming channel that receives a call for every valuekey - the keymin - min scoremax - max scoreoffset - the offsetcount - the count@Deprecated Mono<Long> zrevrangebyscore(ValueStreamingChannel<V> channel, K key, String max, String min, long offset, long count)
zrevrangebyscoreWithScores(java.lang.Object, Range, Limit)channel - streaming channel that receives a call for every valuekey - the keymin - min scoremax - max scoreoffset - the offsetcount - the countMono<Long> zrevrangebyscore(ValueStreamingChannel<V> channel, K key, Range<? extends Number> range, Limit limit)
channel - streaming channel that receives a call for every valuekey - the keyrange - the rangelimit - the limit@Deprecated Flux<ScoredValue<V>> zrevrangebyscoreWithScores(K key, double max, double min)
zrevrangebyscoreWithScores(java.lang.Object, Range)key - the keymax - max scoremin - min score@Deprecated Flux<ScoredValue<V>> zrevrangebyscoreWithScores(K key, String max, String min)
zrevrangebyscoreWithScores(java.lang.Object, Range)key - the keymax - max scoremin - min scoreFlux<ScoredValue<V>> zrevrangebyscoreWithScores(K key, Range<? extends Number> range)
key - the keyrange - the range@Deprecated Flux<ScoredValue<V>> zrevrangebyscoreWithScores(K key, double max, double min, long offset, long count)
zrevrangebyscoreWithScores(java.lang.Object, Range, Limit)key - the keymax - max scoremin - min scoreoffset - the offsetcount - the count@Deprecated Flux<ScoredValue<V>> zrevrangebyscoreWithScores(K key, String max, String min, long offset, long count)
zrevrangebyscoreWithScores(java.lang.Object, Range, Limit)key - the keymax - max scoremin - min scoreoffset - the offsetcount - the countFlux<ScoredValue<V>> zrevrangebyscoreWithScores(K key, Range<? extends Number> range, Limit limit)
key - the keyrange - the rangelimit - limit@Deprecated Mono<Long> zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, double max, double min)
channel - streaming channel that receives a call for every scored valuekey - the keymin - min scoremax - max score@Deprecated Mono<Long> zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, String max, String min)
channel - streaming channel that receives a call for every scored valuekey - the keymin - min scoremax - max scoreMono<Long> zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Range<? extends Number> range)
channel - streaming channel that receives a call for every scored valuekey - the keyrange - the range@Deprecated Mono<Long> zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, double max, double min, long offset, long count)
zrevrangebyscoreWithScores(ScoredValueStreamingChannel, java.lang.Object, Range, Limit)channel - streaming channel that receives a call for every scored valuekey - the keymin - min scoremax - max scoreoffset - the offsetcount - the count@Deprecated Mono<Long> zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, String max, String min, long offset, long count)
zrevrangebyscoreWithScores(ScoredValueStreamingChannel, java.lang.Object, Range, Limit)channel - streaming channel that receives a call for every scored valuekey - the keymin - min scoremax - max scoreoffset - the offsetcount - the countMono<Long> zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Range<? extends Number> range, Limit limit)
channel - streaming channel that receives a call for every scored valuekey - the keyrange - the rangelimit - the limitMono<Long> zrevrank(K key, V member)
key - the keymember - the member type: valuemember. If member does not exist in the sorted set or key
does not exist,Mono<ScoredValueScanCursor<V>> zscan(K key)
key - the keyMono<ScoredValueScanCursor<V>> zscan(K key, ScanArgs scanArgs)
key - the keyscanArgs - scan argumentsMono<ScoredValueScanCursor<V>> zscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)
key - the keyscanCursor - cursor to resume from a previous scan, must not be nullscanArgs - scan argumentsMono<ScoredValueScanCursor<V>> zscan(K key, ScanCursor scanCursor)
key - the keyscanCursor - cursor to resume from a previous scan, must not be nullMono<StreamScanCursor> zscan(ScoredValueStreamingChannel<V> channel, K key)
channel - streaming channel that receives a call for every scored valuekey - the keyMono<StreamScanCursor> zscan(ScoredValueStreamingChannel<V> channel, K key, ScanArgs scanArgs)
channel - streaming channel that receives a call for every scored valuekey - the keyscanArgs - scan argumentsMono<StreamScanCursor> zscan(ScoredValueStreamingChannel<V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)
channel - streaming channel that receives a call for every scored valuekey - the keyscanCursor - cursor to resume from a previous scan, must not be nullscanArgs - scan argumentsMono<StreamScanCursor> zscan(ScoredValueStreamingChannel<V> channel, K key, ScanCursor scanCursor)
channel - streaming channel that receives a call for every scored valuekey - the keyscanCursor - cursor to resume from a previous scan, must not be nullMono<Double> zscore(K key, V member)
key - the keymember - the member type: valuemember (a double precision floating point number), represented as
string.Mono<Long> zunionstore(K destination, K... keys)
destination - destination keykeys - source keysdestination.Mono<Long> zunionstore(K destination, ZStoreArgs storeArgs, K... keys)
destination - the destinationstoreArgs - the storeArgskeys - the keysdestination.Copyright © 2019 lettuce.io. All rights reserved.