K - Key type.V - Value type.@Deprecated public interface RedisSortedSetsAsyncConnection<K,V>
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<Long> |
zadd(K key,
double score,
V member)
Deprecated.
Add one or more members to a sorted set, or update its score if it already exists.
|
RedisFuture<Long> |
zadd(K key,
Object... scoresAndValues)
Deprecated.
Add one or more members to a sorted set, or update its score if it already exists.
|
RedisFuture<Long> |
zadd(K key,
ZAddArgs zAddArgs,
double score,
V member)
Deprecated.
Add one or more members to a sorted set, or update its score if it already exists.
|
RedisFuture<Long> |
zadd(K key,
ZAddArgs zAddArgs,
Object... scoresAndValues)
Deprecated.
Add one or more members to a sorted set, or update its score if it already exists.
|
RedisFuture<Double> |
zaddincr(K key,
double score,
V member)
Deprecated.
Add one or more members to a sorted set, or update its score if it already exists applying the
INCR option. |
RedisFuture<Double> |
zaddincr(K key,
ZAddArgs zAddArgs,
double score,
V member)
Deprecated.
Add one or more members to a sorted set, or update its score if it already exists applying the
INCR option. |
RedisFuture<Long> |
zcard(K key)
Deprecated.
Get the number of members in a sorted set.
|
RedisFuture<Long> |
zcount(K key,
double min,
double max)
Deprecated.
Count the members in a sorted set with scores within the given values.
|
RedisFuture<Long> |
zcount(K key,
String min,
String max)
Deprecated.
Count the members in a sorted set with scores within the given values.
|
RedisFuture<Double> |
zincrby(K key,
double amount,
V member)
Deprecated.
Increment the score of a member in a sorted set.
|
RedisFuture<Long> |
zinterstore(K destination,
K... keys)
Deprecated.
Intersect multiple sorted sets and store the resulting sorted set in a new key.
|
RedisFuture<Long> |
zinterstore(K destination,
ZStoreArgs storeArgs,
K... keys)
Deprecated.
Intersect multiple sorted sets and store the resulting sorted set in a new key.
|
RedisFuture<Long> |
zlexcount(K key,
String min,
String max)
Deprecated.
Count the number of members in a sorted set between a given lexicographical range.
|
RedisFuture<List<V>> |
zrange(K key,
long start,
long stop)
Deprecated.
Return a range of members in a sorted set, by index.
|
RedisFuture<Long> |
zrange(ValueStreamingChannel<V> channel,
K key,
long start,
long stop)
Deprecated.
Stream over a range of members in a sorted set, by index.
|
RedisFuture<List<V>> |
zrangebylex(K key,
String min,
String max)
Deprecated.
Return a range of members in a sorted set, by lexicographical range.
|
RedisFuture<List<V>> |
zrangebylex(K key,
String min,
String max,
long offset,
long count)
Deprecated.
Return a range of members in a sorted set, by lexicographical range.
|
RedisFuture<List<V>> |
zrangebyscore(K key,
double min,
double max)
Deprecated.
Return a range of members in a sorted set, by score.
|
RedisFuture<List<V>> |
zrangebyscore(K key,
double min,
double max,
long offset,
long count)
Deprecated.
Return a range of members in a sorted set, by score.
|
RedisFuture<List<V>> |
zrangebyscore(K key,
String min,
String max)
Deprecated.
Return a range of members in a sorted set, by score.
|
RedisFuture<List<V>> |
zrangebyscore(K key,
String min,
String max,
long offset,
long count)
Deprecated.
Return a range of members in a sorted set, by score.
|
RedisFuture<Long> |
zrangebyscore(ValueStreamingChannel<V> channel,
K key,
double min,
double max)
Deprecated.
Stream over a range of members in a sorted set, by score.
|
RedisFuture<Long> |
zrangebyscore(ValueStreamingChannel<V> channel,
K key,
double min,
double max,
long offset,
long count)
Deprecated.
Stream over a range of members in a sorted set, by score.
|
RedisFuture<Long> |
zrangebyscore(ValueStreamingChannel<V> channel,
K key,
String min,
String max)
Deprecated.
Stream over a range of members in a sorted set, by score.
|
RedisFuture<Long> |
zrangebyscore(ValueStreamingChannel<V> channel,
K key,
String min,
String max,
long offset,
long count)
Deprecated.
Stream over a range of members in a sorted set, by score.
|
RedisFuture<List<ScoredValue<V>>> |
zrangebyscoreWithScores(K key,
double min,
double max)
Deprecated.
Return a range of members with score in a sorted set, by score.
|
RedisFuture<List<ScoredValue<V>>> |
zrangebyscoreWithScores(K key,
double min,
double max,
long offset,
long count)
Deprecated.
Return a range of members with score in a sorted set, by score.
|
RedisFuture<List<ScoredValue<V>>> |
zrangebyscoreWithScores(K key,
String min,
String max)
Deprecated.
Return a range of members with score in a sorted set, by score.
|
RedisFuture<List<ScoredValue<V>>> |
zrangebyscoreWithScores(K key,
String min,
String max,
long offset,
long count)
Deprecated.
Return a range of members with score in a sorted set, by score.
|
RedisFuture<Long> |
zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
double min,
double max)
Deprecated.
Stream over a range of members with scores in a sorted set, by score.
|
RedisFuture<Long> |
zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
double min,
double max,
long offset,
long count)
Deprecated.
Stream over a range of members with scores in a sorted set, by score.
|
RedisFuture<Long> |
zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
String min,
String max)
Deprecated.
Stream over a range of members with scores in a sorted set, by score.
|
RedisFuture<Long> |
zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
String min,
String max,
long offset,
long count)
Deprecated.
Stream over a range of members with scores in a sorted set, by score.
|
RedisFuture<List<ScoredValue<V>>> |
zrangeWithScores(K key,
long start,
long stop)
Deprecated.
Return a range of members in a sorted set, by index.
|
RedisFuture<Long> |
zrangeWithScores(ScoredValueStreamingChannel<V> channel,
K key,
long start,
long stop)
Deprecated.
Stream over a range of members with scores in a sorted set, by index.
|
RedisFuture<Long> |
zrank(K key,
V member)
Deprecated.
Determine the index of a member in a sorted set.
|
RedisFuture<Long> |
zrem(K key,
V... members)
Deprecated.
Remove one or more members from a sorted set.
|
RedisFuture<Long> |
zremrangebylex(K key,
String min,
String max)
Deprecated.
Remove all members in a sorted set between the given lexicographical range.
|
RedisFuture<Long> |
zremrangebyrank(K key,
long start,
long stop)
Deprecated.
Remove all members in a sorted set within the given indexes.
|
RedisFuture<Long> |
zremrangebyscore(K key,
double min,
double max)
Deprecated.
Remove all members in a sorted set within the given scores.
|
RedisFuture<Long> |
zremrangebyscore(K key,
String min,
String max)
Deprecated.
Remove all members in a sorted set within the given scores.
|
RedisFuture<List<V>> |
zrevrange(K key,
long start,
long stop)
Deprecated.
Return a range of members in a sorted set, by index, with scores ordered from high to low.
|
RedisFuture<Long> |
zrevrange(ValueStreamingChannel<V> channel,
K key,
long start,
long stop)
Deprecated.
Stream over a range of members in a sorted set, by index, with scores ordered from high to low.
|
RedisFuture<List<V>> |
zrevrangebyscore(K key,
double max,
double min)
Deprecated.
Return a range of members in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<List<V>> |
zrevrangebyscore(K key,
double max,
double min,
long offset,
long count)
Deprecated.
Return a range of members in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<List<V>> |
zrevrangebyscore(K key,
String max,
String min)
Deprecated.
Return a range of members in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<List<V>> |
zrevrangebyscore(K key,
String max,
String min,
long offset,
long count)
Deprecated.
Return a range of members in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<Long> |
zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
double max,
double min)
Deprecated.
Stream over a range of members in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<Long> |
zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
double max,
double min,
long offset,
long count)
Deprecated.
Stream over a range of members in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<Long> |
zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
String max,
String min)
Deprecated.
Stream over a range of members in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<Long> |
zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
String max,
String min,
long offset,
long count)
Deprecated.
Stream over a range of members in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<List<ScoredValue<V>>> |
zrevrangebyscoreWithScores(K key,
double max,
double min)
Deprecated.
Return a range of members with scores in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<List<ScoredValue<V>>> |
zrevrangebyscoreWithScores(K key,
double max,
double min,
long offset,
long count)
Deprecated.
Return a range of members with scores in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<List<ScoredValue<V>>> |
zrevrangebyscoreWithScores(K key,
String max,
String min)
Deprecated.
Return a range of members with scores in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<List<ScoredValue<V>>> |
zrevrangebyscoreWithScores(K key,
String max,
String min,
long offset,
long count)
Deprecated.
Return a range of members with scores in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<Long> |
zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
double max,
double min)
Deprecated.
Stream over a range of members with scores in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<Long> |
zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
double max,
double min,
long offset,
long count)
Deprecated.
Stream over a range of members with scores in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<Long> |
zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
String max,
String min)
Deprecated.
Stream over a range of members with scores in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<Long> |
zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel,
K key,
String max,
String min,
long offset,
long count)
Deprecated.
Stream over a range of members with scores in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<List<ScoredValue<V>>> |
zrevrangeWithScores(K key,
long start,
long stop)
Deprecated.
Return a range of members with scores in a sorted set, by index, with scores ordered from high to low.
|
RedisFuture<Long> |
zrevrangeWithScores(ScoredValueStreamingChannel<V> channel,
K key,
long start,
long stop)
Deprecated.
Stream over a range of members with scores in a sorted set, by index, with scores ordered from high to low.
|
RedisFuture<Long> |
zrevrank(K key,
V member)
Deprecated.
Determine the index of a member in a sorted set, with scores ordered from high to low.
|
RedisFuture<ScoredValueScanCursor<V>> |
zscan(K key)
Deprecated.
Incrementally iterate sorted sets elements and associated scores.
|
RedisFuture<ScoredValueScanCursor<V>> |
zscan(K key,
ScanArgs scanArgs)
Deprecated.
Incrementally iterate sorted sets elements and associated scores.
|
RedisFuture<ScoredValueScanCursor<V>> |
zscan(K key,
ScanCursor scanCursor)
Deprecated.
Incrementally iterate sorted sets elements and associated scores.
|
RedisFuture<ScoredValueScanCursor<V>> |
zscan(K key,
ScanCursor scanCursor,
ScanArgs scanArgs)
Deprecated.
Incrementally iterate sorted sets elements and associated scores.
|
RedisFuture<StreamScanCursor> |
zscan(ScoredValueStreamingChannel<V> channel,
K key)
Deprecated.
Incrementally iterate sorted sets elements and associated scores.
|
RedisFuture<StreamScanCursor> |
zscan(ScoredValueStreamingChannel<V> channel,
K key,
ScanArgs scanArgs)
Deprecated.
Incrementally iterate sorted sets elements and associated scores.
|
RedisFuture<StreamScanCursor> |
zscan(ScoredValueStreamingChannel<V> channel,
K key,
ScanCursor scanCursor)
Deprecated.
Incrementally iterate sorted sets elements and associated scores.
|
RedisFuture<StreamScanCursor> |
zscan(ScoredValueStreamingChannel<V> channel,
K key,
ScanCursor scanCursor,
ScanArgs scanArgs)
Deprecated.
Incrementally iterate sorted sets elements and associated scores.
|
RedisFuture<Double> |
zscore(K key,
V member)
Deprecated.
Get the score associated with the given member in a sorted set.
|
RedisFuture<Long> |
zunionstore(K destination,
K... keys)
Deprecated.
Add multiple sorted sets and store the resulting sorted set in a new key.
|
RedisFuture<Long> |
zunionstore(K destination,
ZStoreArgs storeArgs,
K... keys)
Deprecated.
Add multiple sorted sets and store the resulting sorted set in a new key.
|
RedisFuture<Long> zadd(K key, double score, V member)
key - the keyscore - the scoremember - the memberRedisFuture<Long> zadd(K key, Object... scoresAndValues)
key - the keyscoresAndValues - the scoresAndValue tuples (score,value,score,value,...)RedisFuture<Long> zadd(K key, ZAddArgs zAddArgs, double score, V member)
key - the keyzAddArgs - arguments for zaddscore - the scoremember - the memberRedisFuture<Long> zadd(K key, ZAddArgs zAddArgs, Object... scoresAndValues)
key - the keyzAddArgs - arguments for zaddscoresAndValues - the scoresAndValue tuples (score,value,score,value,...)RedisFuture<Double> zaddincr(K key, double score, V member)
INCR option. ZADD
acts like ZINCRBY.key - the keyscore - the scoremember - the memberRedisFuture<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 memberRedisFuture<Long> zcard(K key)
key - the keykey does not exist.RedisFuture<Long> zcount(K key, double min, double max)
key - the keymin - min scoremax - max scoreRedisFuture<Long> zcount(K key, String min, String max)
key - the keymin - min scoremax - max scoreRedisFuture<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.RedisFuture<Long> zinterstore(K destination, K... keys)
destination - the destinationkeys - the keysdestination.RedisFuture<Long> zinterstore(K destination, ZStoreArgs storeArgs, K... keys)
destination - the destinationstoreArgs - the storeArgskeys - the keysdestination.RedisFuture<List<V>> zrange(K key, long start, long stop)
key - the keystart - the startstop - the stopRedisFuture<List<ScoredValue<V>>> zrangeWithScores(K key, long start, long stop)
key - the keystart - the startstop - the stopRedisFuture<List<V>> zrangebyscore(K key, double min, double max)
key - the keymin - min scoremax - max scoreRedisFuture<List<V>> zrangebyscore(K key, String min, String max)
key - the keymin - min scoremax - max scoreRedisFuture<List<V>> zrangebyscore(K key, double min, double max, long offset, long count)
key - the keymin - min scoremax - max scoreoffset - the offsetcount - the countRedisFuture<List<V>> zrangebyscore(K key, String min, String max, long offset, long count)
key - the keymin - min scoremax - max scoreoffset - the offsetcount - the countRedisFuture<List<ScoredValue<V>>> zrangebyscoreWithScores(K key, double min, double max)
key - the keymin - min scoremax - max scoreRedisFuture<List<ScoredValue<V>>> zrangebyscoreWithScores(K key, String min, String max)
key - the keymin - min scoremax - max scoreRedisFuture<List<ScoredValue<V>>> zrangebyscoreWithScores(K key, double min, double max, long offset, long count)
key - the keymin - min scoremax - max scoreoffset - the offsetcount - the countRedisFuture<List<ScoredValue<V>>> zrangebyscoreWithScores(K key, String min, String max, long offset, long count)
key - the keymin - min scoremax - max scoreoffset - the offsetcount - the countRedisFuture<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 stopRedisFuture<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 stopRedisFuture<Long> zrangebyscore(ValueStreamingChannel<V> channel, K key, double min, double max)
channel - streaming channel that receives a call for every valuekey - the keymin - min scoremax - max scoreRedisFuture<Long> zrangebyscore(ValueStreamingChannel<V> channel, K key, String min, String max)
channel - streaming channel that receives a call for every valuekey - the keymin - min scoremax - max scoreRedisFuture<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 countRedisFuture<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 countRedisFuture<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 scoreRedisFuture<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 scoreRedisFuture<Long> zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, double min, double max, long offset, long count)
channel - streaming channel that receives a call for every scored valuekey - the keymin - min scoremax - max scoreoffset - the offsetcount - the countRedisFuture<Long> zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, String min, String max, long offset, long count)
channel - streaming channel that receives a call for every scored valuekey - the keymin - min scoremax - max scoreoffset - the offsetcount - the countRedisFuture<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,RedisFuture<Long> zrem(K key, V... members)
key - the keymembers - the member type: valueRedisFuture<Long> zremrangebyrank(K key, long start, long stop)
key - the keystart - the start type: longstop - the stop type: longRedisFuture<Long> zremrangebyscore(K key, double min, double max)
key - the keymin - min scoremax - max scoreRedisFuture<Long> zremrangebyscore(K key, String min, String max)
key - the keymin - min scoremax - max scoreRedisFuture<List<V>> zrevrange(K key, long start, long stop)
key - the keystart - the startstop - the stopRedisFuture<List<ScoredValue<V>>> zrevrangeWithScores(K key, long start, long stop)
key - the keystart - the startstop - the stopRedisFuture<List<V>> zrevrangebyscore(K key, double max, double min)
key - the keymin - min scoremax - max scoreRedisFuture<List<V>> zrevrangebyscore(K key, String max, String min)
key - the keymin - min scoremax - max scoreRedisFuture<List<V>> zrevrangebyscore(K key, double max, double min, long offset, long count)
key - the keymin - min scoremax - max scoreoffset - the offsetcount - the countRedisFuture<List<V>> zrevrangebyscore(K key, String max, String min, long offset, long count)
key - the keymax - max scoremin - min scoreoffset - the offsetcount - the countRedisFuture<List<ScoredValue<V>>> zrevrangebyscoreWithScores(K key, double max, double min)
key - the keymax - max scoremin - min scoreRedisFuture<List<ScoredValue<V>>> zrevrangebyscoreWithScores(K key, String max, String min)
key - the keymax - max scoremin - min scoreRedisFuture<List<ScoredValue<V>>> zrevrangebyscoreWithScores(K key, double max, double min, long offset, long count)
key - the keymax - max scoremin - min scoreoffset - the offsetcount - the countRedisFuture<List<ScoredValue<V>>> zrevrangebyscoreWithScores(K key, String max, String min, long offset, long count)
key - the keymax - max scoremin - min scoreoffset - the offsetcount - the countRedisFuture<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 stopRedisFuture<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 stopRedisFuture<Long> zrevrangebyscore(ValueStreamingChannel<V> channel, K key, double max, double min)
channel - streaming channel that receives a call for every valuekey - the keymax - max scoremin - min scoreRedisFuture<Long> zrevrangebyscore(ValueStreamingChannel<V> channel, K key, String max, String min)
channel - streaming channel that receives a call for every valuekey - the keymin - min scoremax - max scoreRedisFuture<Long> zrevrangebyscore(ValueStreamingChannel<V> channel, K key, double max, double min, long offset, long count)
channel - streaming channel that receives a call for every valuekey - the keymin - min scoremax - max scoreoffset - the offsetcount - the countRedisFuture<Long> zrevrangebyscore(ValueStreamingChannel<V> channel, K key, String max, String min, long offset, long count)
channel - streaming channel that receives a call for every valuekey - the keymin - min scoremax - max scoreoffset - the offsetcount - the countRedisFuture<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 scoreRedisFuture<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 scoreRedisFuture<Long> zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, double max, double min, long offset, long count)
channel - streaming channel that receives a call for every scored valuekey - the keymin - min scoremax - max scoreoffset - the offsetcount - the countRedisFuture<Long> zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, String max, String min, long offset, long count)
channel - streaming channel that receives a call for every scored valuekey - the keymin - min scoremax - max scoreoffset - the offsetcount - the countRedisFuture<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,RedisFuture<Double> zscore(K key, V member)
key - the keymember - the member type: valuemember (a double precision floating point
number), represented as string.RedisFuture<Long> zunionstore(K destination, K... keys)
destination - destination keykeys - source keysdestination.RedisFuture<Long> zunionstore(K destination, ZStoreArgs storeArgs, K... keys)
destination - the destinationstoreArgs - the storeArgskeys - the keysdestination.RedisFuture<ScoredValueScanCursor<V>> zscan(K key)
key - the keyRedisFuture<ScoredValueScanCursor<V>> zscan(K key, ScanArgs scanArgs)
key - the keyscanArgs - scan argumentsRedisFuture<ScoredValueScanCursor<V>> zscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)
key - the keyscanCursor - cursor to resume from a previous scan, must not be nullscanArgs - scan argumentsRedisFuture<ScoredValueScanCursor<V>> zscan(K key, ScanCursor scanCursor)
key - the keyscanCursor - cursor to resume from a previous scan, must not be nullRedisFuture<StreamScanCursor> zscan(ScoredValueStreamingChannel<V> channel, K key)
channel - streaming channel that receives a call for every scored valuekey - the keyRedisFuture<StreamScanCursor> zscan(ScoredValueStreamingChannel<V> channel, K key, ScanArgs scanArgs)
channel - streaming channel that receives a call for every scored valuekey - the keyscanArgs - scan argumentsRedisFuture<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 argumentsRedisFuture<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 nullRedisFuture<Long> zlexcount(K key, String min, String max)
key - the keymin - min scoremax - max scoreRedisFuture<Long> zremrangebylex(K key, String min, String max)
key - the keymin - min scoremax - max scoreRedisFuture<List<V>> zrangebylex(K key, String min, String max)
key - the keymin - min scoremax - max scoreRedisFuture<List<V>> zrangebylex(K key, String min, String max, long offset, long count)
key - the keymin - min scoremax - max scoreoffset - the offsetcount - the countCopyright © 2018 lettuce.io. All rights reserved.