Package | Description |
---|---|
redis.client |
Modifier and Type | Method and Description |
---|---|
MultiBulkReply |
RedisClient.blpop_(Object... arguments) |
MultiBulkReply |
RedisClient.blpop(Object... key0)
Remove and get the first element in a list, or block until one is available
List
|
MultiBulkReply |
RedisClient.brpop_(Object... arguments) |
MultiBulkReply |
RedisClient.brpop(Object... key0)
Remove and get the last element in a list, or block until one is available
List
|
MultiBulkReply |
RedisClient.hgetall(Object key0)
Get all the fields and values in a hash
Hash
|
MultiBulkReply |
RedisClient.hkeys(Object key0)
Get all the fields in a hash
Hash
|
MultiBulkReply |
RedisClient.hmget_(Object... arguments) |
MultiBulkReply |
RedisClient.hmget(Object key0,
Object... field1)
Get the values of all the given hash fields
Hash
|
MultiBulkReply |
RedisClient.hvals(Object key0)
Get all the values in a hash
Hash
|
MultiBulkReply |
RedisClient.keys(Object pattern0)
Find all keys matching the given pattern
Generic
|
MultiBulkReply |
RedisClient.lrange(Object key0,
Object start1,
Object stop2)
Get a range of elements from a list
List
|
MultiBulkReply |
RedisClient.mget_(Object... arguments) |
MultiBulkReply |
RedisClient.mget(Object... key0)
Get the values of all the given keys
String
|
MultiBulkReply |
RedisClient.sdiff_(Object... arguments) |
MultiBulkReply |
RedisClient.sdiff(Object... key0)
Subtract multiple sets
Set
|
MultiBulkReply |
RedisClient.sinter_(Object... arguments) |
MultiBulkReply |
RedisClient.sinter(Object... key0)
Intersect multiple sets
Set
|
MultiBulkReply |
RedisClient.smembers(Object key0)
Get all the members in a set
Set
|
MultiBulkReply |
RedisClient.sunion_(Object... arguments) |
MultiBulkReply |
RedisClient.sunion(Object... key0)
Add multiple sets
Set
|
MultiBulkReply |
RedisClient.time()
Return the current server time
Server
|
MultiBulkReply |
RedisClient.zrange_(Object... arguments) |
MultiBulkReply |
RedisClient.zrange(Object key0,
Object start1,
Object stop2,
Object withscores3)
Return a range of members in a sorted set, by index
Sorted_set
|
MultiBulkReply |
RedisClient.zrangebyscore_(Object... arguments) |
MultiBulkReply |
RedisClient.zrangebyscore(Object key0,
Object min1,
Object max2,
Object withscores3,
Object... offset_or_count4)
Return a range of members in a sorted set, by score
Sorted_set
|
MultiBulkReply |
RedisClient.zrevrange_(Object... arguments) |
MultiBulkReply |
RedisClient.zrevrange(Object key0,
Object start1,
Object stop2,
Object withscores3)
Return a range of members in a sorted set, by index, with scores ordered from high to low
Sorted_set
|
MultiBulkReply |
RedisClient.zrevrangebyscore_(Object... arguments) |
MultiBulkReply |
RedisClient.zrevrangebyscore(Object key0,
Object max1,
Object min2,
Object withscores3,
Object... offset_or_count4)
Return a range of members in a sorted set, by score, with scores ordered from high to low
Sorted_set
|
Modifier and Type | Method and Description |
---|---|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.blpop_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.blpop(Object... key0)
Remove and get the first element in a list, or block until one is available
List
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.brpop_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.brpop(Object... key0)
Remove and get the last element in a list, or block until one is available
List
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.hgetall(Object key0)
Get all the fields and values in a hash
Hash
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.hkeys(Object key0)
Get all the fields in a hash
Hash
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.hmget_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.hmget(Object key0,
Object... field1)
Get the values of all the given hash fields
Hash
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.hvals(Object key0)
Get all the values in a hash
Hash
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.keys(Object pattern0)
Find all keys matching the given pattern
Generic
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.lrange(Object key0,
Object start1,
Object stop2)
Get a range of elements from a list
List
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.mget_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.mget(Object... key0)
Get the values of all the given keys
String
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.sdiff_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.sdiff(Object... key0)
Subtract multiple sets
Set
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.sinter_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.sinter(Object... key0)
Intersect multiple sets
Set
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.smembers(Object key0)
Get all the members in a set
Set
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.sunion_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.sunion(Object... key0)
Add multiple sets
Set
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.time()
Return the current server time
Server
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.zrange_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.zrange(Object key0,
Object start1,
Object stop2,
Object withscores3)
Return a range of members in a sorted set, by index
Sorted_set
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.zrangebyscore_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.zrangebyscore(Object key0,
Object min1,
Object max2,
Object withscores3,
Object... offset_or_count4)
Return a range of members in a sorted set, by score
Sorted_set
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.zrevrange_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.zrevrange(Object key0,
Object start1,
Object stop2,
Object withscores3)
Return a range of members in a sorted set, by index, with scores ordered from high to low
Sorted_set
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.zrevrangebyscore_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
RedisClient.Pipeline.zrevrangebyscore(Object key0,
Object max1,
Object min2,
Object withscores3,
Object... offset_or_count4)
Return a range of members in a sorted set, by score, with scores ordered from high to low
Sorted_set
|
Copyright © 2015. All rights reserved.