Package | Description |
---|---|
com.lambdaworks.redis |
The redis client package containing
RedisClient for regular and sentinel operations. |
com.lambdaworks.redis.output |
Implementation of different output protocols including the Streaming API.
|
Modifier and Type | Method and Description |
---|---|
Long |
RedisHashesConnection.hmget(ValueStreamingChannel<V> channel,
K key,
K... fields)
Stream over the values of all the given hash fields.
|
RedisFuture<Long> |
RedisHashesAsyncConnection.hmget(ValueStreamingChannel<V> channel,
K key,
K... fields)
Stream over the values of all the given hash fields.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.hmget(ValueStreamingChannel<V> channel,
K key,
K... fields) |
Long |
RedisHashesConnection.hvals(ValueStreamingChannel<V> channel,
K key)
Stream over all the values in a hash.
|
RedisFuture<Long> |
RedisHashesAsyncConnection.hvals(ValueStreamingChannel<V> channel,
K key)
Stream over all the values in a hash.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.hvals(ValueStreamingChannel<V> channel,
K key) |
Long |
RedisListsConnection.lrange(ValueStreamingChannel<V> channel,
K key,
long start,
long stop)
Get a range of elements from a list.
|
RedisFuture<Long> |
RedisListsAsyncConnection.lrange(ValueStreamingChannel<V> channel,
K key,
long start,
long stop)
Get a range of elements from a list.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.lrange(ValueStreamingChannel<V> channel,
K key,
long start,
long stop) |
Long |
RedisStringsConnection.mget(ValueStreamingChannel<V> channel,
K... keys)
Stream over the values of all the given keys.
|
RedisFuture<Long> |
RedisStringsAsyncConnection.mget(ValueStreamingChannel<V> channel,
K... keys)
Stream the values of all the given keys.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.mget(ValueStreamingChannel<V> channel,
K... keys) |
Long |
RedisSetsConnection.sdiff(ValueStreamingChannel<V> channel,
K... keys)
Subtract multiple sets.
|
RedisFuture<Long> |
RedisSetsAsyncConnection.sdiff(ValueStreamingChannel<V> channel,
K... keys)
Subtract multiple sets.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.sdiff(ValueStreamingChannel<V> channel,
K... keys) |
Long |
RedisSetsConnection.sinter(ValueStreamingChannel<V> channel,
K... keys)
Intersect multiple sets.
|
RedisFuture<Long> |
RedisSetsAsyncConnection.sinter(ValueStreamingChannel<V> channel,
K... keys)
Intersect multiple sets.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.sinter(ValueStreamingChannel<V> channel,
K... keys) |
Long |
RedisSetsConnection.smembers(ValueStreamingChannel<V> channel,
K key)
Get all the members in a set.
|
RedisFuture<Long> |
RedisSetsAsyncConnection.smembers(ValueStreamingChannel<V> channel,
K key)
Get all the members in a set.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.smembers(ValueStreamingChannel<V> channel,
K key) |
Long |
RedisKeysConnection.sort(ValueStreamingChannel<V> channel,
K key)
Sort the elements in a list, set or sorted set.
|
RedisFuture<Long> |
RedisKeysAsyncConnection.sort(ValueStreamingChannel<V> channel,
K key)
Sort the elements in a list, set or sorted set.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.sort(ValueStreamingChannel<V> channel,
K key) |
Long |
RedisKeysConnection.sort(ValueStreamingChannel<V> channel,
K key,
SortArgs sortArgs)
Sort the elements in a list, set or sorted set.
|
RedisFuture<Long> |
RedisKeysAsyncConnection.sort(ValueStreamingChannel<V> channel,
K key,
SortArgs sortArgs)
Sort the elements in a list, set or sorted set.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.sort(ValueStreamingChannel<V> channel,
K key,
SortArgs sortArgs) |
Long |
RedisSetsConnection.srandmember(ValueStreamingChannel<V> channel,
K key,
long count)
Get one or multiple random members from a set.
|
RedisFuture<Long> |
RedisSetsAsyncConnection.srandmember(ValueStreamingChannel<V> channel,
K key,
long count)
Get one or multiple random members from a set.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.srandmember(ValueStreamingChannel<V> channel,
K key,
long count) |
StreamScanCursor |
RedisSetsConnection.sscan(ValueStreamingChannel<V> channel,
K key)
Incrementally iterate Set elements.
|
RedisFuture<StreamScanCursor> |
RedisSetsAsyncConnection.sscan(ValueStreamingChannel<V> channel,
K key)
Incrementally iterate Set elements.
|
RedisFuture<StreamScanCursor> |
RedisAsyncConnectionImpl.sscan(ValueStreamingChannel<V> channel,
K key) |
StreamScanCursor |
RedisSetsConnection.sscan(ValueStreamingChannel<V> channel,
K key,
ScanArgs scanArgs)
Incrementally iterate Set elements.
|
RedisFuture<StreamScanCursor> |
RedisSetsAsyncConnection.sscan(ValueStreamingChannel<V> channel,
K key,
ScanArgs scanArgs)
Incrementally iterate Set elements.
|
RedisFuture<StreamScanCursor> |
RedisAsyncConnectionImpl.sscan(ValueStreamingChannel<V> channel,
K key,
ScanArgs scanArgs) |
StreamScanCursor |
RedisSetsConnection.sscan(ValueStreamingChannel<V> channel,
K key,
ScanCursor scanCursor)
Incrementally iterate Set elements.
|
RedisFuture<StreamScanCursor> |
RedisSetsAsyncConnection.sscan(ValueStreamingChannel<V> channel,
K key,
ScanCursor scanCursor)
Incrementally iterate Set elements.
|
RedisFuture<StreamScanCursor> |
RedisAsyncConnectionImpl.sscan(ValueStreamingChannel<V> channel,
K key,
ScanCursor scanCursor) |
StreamScanCursor |
RedisSetsConnection.sscan(ValueStreamingChannel<V> channel,
K key,
ScanCursor scanCursor,
ScanArgs scanArgs)
Incrementally iterate Set elements.
|
RedisFuture<StreamScanCursor> |
RedisSetsAsyncConnection.sscan(ValueStreamingChannel<V> channel,
K key,
ScanCursor scanCursor,
ScanArgs scanArgs)
Incrementally iterate Set elements.
|
RedisFuture<StreamScanCursor> |
RedisAsyncConnectionImpl.sscan(ValueStreamingChannel<V> channel,
K key,
ScanCursor scanCursor,
ScanArgs scanArgs) |
Long |
RedisSetsConnection.sunion(ValueStreamingChannel<V> channel,
K... keys)
Add multiple sets.
|
RedisFuture<Long> |
RedisSetsAsyncConnection.sunion(ValueStreamingChannel<V> channel,
K... keys)
Add multiple sets.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.sunion(ValueStreamingChannel<V> channel,
K... keys) |
Long |
RedisSortedSetsConnection.zrange(ValueStreamingChannel<V> channel,
K key,
long start,
long stop)
Return a range of members in a sorted set, by index.
|
RedisFuture<Long> |
RedisSortedSetsAsyncConnection.zrange(ValueStreamingChannel<V> channel,
K key,
long start,
long stop)
Stream over a range of members in a sorted set, by index.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.zrange(ValueStreamingChannel<V> channel,
K key,
long start,
long stop) |
Long |
RedisSortedSetsConnection.zrangebyscore(ValueStreamingChannel<V> channel,
K key,
double min,
double max)
Stream over a range of members in a sorted set, by score.
|
RedisFuture<Long> |
RedisSortedSetsAsyncConnection.zrangebyscore(ValueStreamingChannel<V> channel,
K key,
double min,
double max)
Stream over a range of members in a sorted set, by score.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.zrangebyscore(ValueStreamingChannel<V> channel,
K key,
double min,
double max) |
Long |
RedisSortedSetsConnection.zrangebyscore(ValueStreamingChannel<V> channel,
K key,
double min,
double max,
long offset,
long count)
Stream over range of members in a sorted set, by score.
|
RedisFuture<Long> |
RedisSortedSetsAsyncConnection.zrangebyscore(ValueStreamingChannel<V> channel,
K key,
double min,
double max,
long offset,
long count)
Stream over a range of members in a sorted set, by score.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.zrangebyscore(ValueStreamingChannel<V> channel,
K key,
double min,
double max,
long offset,
long count) |
Long |
RedisSortedSetsConnection.zrangebyscore(ValueStreamingChannel<V> channel,
K key,
String min,
String max)
Stream over a range of members in a sorted set, by score.
|
RedisFuture<Long> |
RedisSortedSetsAsyncConnection.zrangebyscore(ValueStreamingChannel<V> channel,
K key,
String min,
String max)
Stream over a range of members in a sorted set, by score.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.zrangebyscore(ValueStreamingChannel<V> channel,
K key,
String min,
String max) |
Long |
RedisSortedSetsConnection.zrangebyscore(ValueStreamingChannel<V> channel,
K key,
String min,
String max,
long offset,
long count)
Stream over a range of members in a sorted set, by score.
|
RedisFuture<Long> |
RedisSortedSetsAsyncConnection.zrangebyscore(ValueStreamingChannel<V> channel,
K key,
String min,
String max,
long offset,
long count)
Stream over a range of members in a sorted set, by score.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.zrangebyscore(ValueStreamingChannel<V> channel,
K key,
String min,
String max,
long offset,
long count) |
Long |
RedisSortedSetsConnection.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.
|
RedisFuture<Long> |
RedisSortedSetsAsyncConnection.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.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.zrevrange(ValueStreamingChannel<V> channel,
K key,
long start,
long stop) |
Long |
RedisSortedSetsConnection.zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
double max,
double min)
Stream over a range of members in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<Long> |
RedisSortedSetsAsyncConnection.zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
double max,
double min)
Stream over a range of members in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
double max,
double min) |
Long |
RedisSortedSetsConnection.zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
double max,
double min,
long offset,
long count)
Stream over a range of members in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<Long> |
RedisSortedSetsAsyncConnection.zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
double max,
double min,
long offset,
long count)
Stream over a range of members in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
double max,
double min,
long offset,
long count) |
Long |
RedisSortedSetsConnection.zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
String max,
String min)
Stream over a range of members in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<Long> |
RedisSortedSetsAsyncConnection.zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
String max,
String min)
Stream over a range of members in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
String max,
String min) |
Long |
RedisSortedSetsConnection.zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
String max,
String min,
long offset,
long count)
Stream over a range of members in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<Long> |
RedisSortedSetsAsyncConnection.zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
String max,
String min,
long offset,
long count)
Stream over a range of members in a sorted set, by score, with scores ordered from high to low.
|
RedisFuture<Long> |
RedisAsyncConnectionImpl.zrevrangebyscore(ValueStreamingChannel<V> channel,
K key,
String max,
String min,
long offset,
long count) |
Constructor and Description |
---|
ValueScanStreamingOutput(RedisCodec<K,V> codec,
ValueStreamingChannel<V> channel) |
ValueStreamingOutput(RedisCodec<K,V> codec,
ValueStreamingChannel<V> channel) |
Copyright © 2015. All rights reserved.