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