public class RedisClient.Pipeline extends Object
Constructor and Description |
---|
Pipeline() |
Modifier and Type | Method and Description |
---|---|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
append(Object key0,
Object value1)
Append a value to a key
String
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
bgrewriteaof()
Asynchronously rewrite the append-only file
Server
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
bgsave()
Asynchronously save the dataset to disk
Server
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
bitcount_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
bitcount(Object key0,
Object start1,
Object end2)
Count set bits in a string
String
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
bitop_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
bitop(Object operation0,
Object destkey1,
Object... key2)
Perform bitwise operations between strings
String
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
blpop_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
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> |
brpop_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
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<Reply> |
brpoplpush(Object source0,
Object destination1,
Object timeout2)
Pop a value from a list, push it to another list and return it; or block until one is available
List
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
client_getname()
Get the current connection name
Server
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
client_kill(Object ip_port0)
Kill the connection of a client
Server
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
client_list()
Get the list of client connections
Server
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
client_setname(Object connection_name0)
Set the current connection name
Server
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
config_get(Object parameter0)
Get the value of a configuration parameter
Server
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
config_resetstat()
Reset the stats returned by INFO
Server
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
config_set(Object parameter0,
Object value1)
Set a configuration parameter to the given value
Server
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
dbsize()
Return the number of keys in the selected database
Server
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
debug_object(Object key0)
Get debugging information about a key
Server
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
debug_segfault()
Make the server crash
Server
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
decr(Object key0)
Decrement the integer value of a key by one
String
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
decrby(Object key0,
Object decrement1)
Decrement the integer value of a key by the given number
String
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
del_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
del(Object... key0)
Delete a key
Generic
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
dump(Object key0)
Return a serialized version of the value stored at the specified key.
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
echo(Object message0)
Echo the given string
Connection
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
eval_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<Reply> |
eval(Object script0,
Object numkeys1,
Object... key2)
Execute a Lua script server side
Scripting
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
evalsha_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<Reply> |
evalsha(Object sha10,
Object numkeys1,
Object... key2)
Execute a Lua script server side
Scripting
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
exists(Object key0)
Determine if a key exists
Generic
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
expire(Object key0,
Object seconds1)
Set a key's time to live in seconds
Generic
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
expireat(Object key0,
Object timestamp1)
Set the expiration for a key as a UNIX timestamp
Generic
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
flushall()
Remove all keys from all databases
Server
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
flushdb()
Remove all keys from the current database
Server
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
get(Object key0)
Get the value of a key
String
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
getbit(Object key0,
Object offset1)
Returns the bit value at offset in the string value stored at key
String
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
getrange(Object key0,
Object start1,
Object end2)
Get a substring of the string stored at a key
String
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
getset(Object key0,
Object value1)
Set the string value of a key and return its old value
String
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
hdel_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
hdel(Object key0,
Object... field1)
Delete one or more hash fields
Hash
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
hexists(Object key0,
Object field1)
Determine if a hash field exists
Hash
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
hget(Object key0,
Object field1)
Get the value of a hash field
Hash
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
hgetall(Object key0)
Get all the fields and values in a hash
Hash
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
hincrby(Object key0,
Object field1,
Object increment2)
Increment the integer value of a hash field by the given number
Hash
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
hincrbyfloat(Object key0,
Object field1,
Object increment2)
Increment the float value of a hash field by the given amount
Hash
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
hkeys(Object key0)
Get all the fields in a hash
Hash
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
hlen(Object key0)
Get the number of fields in a hash
Hash
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
hmget_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
hmget(Object key0,
Object... field1)
Get the values of all the given hash fields
Hash
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
hmset_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
hmset(Object key0,
Object... field_or_value1)
Set multiple hash fields to multiple values
Hash
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
hset(Object key0,
Object field1,
Object value2)
Set the string value of a hash field
Hash
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
hsetnx(Object key0,
Object field1,
Object value2)
Set the value of a hash field, only if the field does not exist
Hash
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
hvals(Object key0)
Get all the values in a hash
Hash
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
incr(Object key0)
Increment the integer value of a key by one
String
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
incrby(Object key0,
Object increment1)
Increment the integer value of a key by the given amount
String
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
incrbyfloat(Object key0,
Object increment1)
Increment the float value of a key by the given amount
String
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
info_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
info(Object section0)
Get information and statistics about the server
Server
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
keys(Object pattern0)
Find all keys matching the given pattern
Generic
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
lastsave()
Get the UNIX time stamp of the last successful save to disk
Server
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
lindex(Object key0,
Object index1)
Get an element from a list by its index
List
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
linsert(Object key0,
Object where1,
Object pivot2,
Object value3)
Insert an element before or after another element in a list
List
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
llen(Object key0)
Get the length of a list
List
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
lpop(Object key0)
Remove and get the first element in a list
List
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
lpush_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
lpush(Object key0,
Object... value1)
Prepend one or multiple values to a list
List
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
lpushx(Object key0,
Object value1)
Prepend a value to a list, only if the list exists
List
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
lrange(Object key0,
Object start1,
Object stop2)
Get a range of elements from a list
List
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
lrem(Object key0,
Object count1,
Object value2)
Remove elements from a list
List
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
lset(Object key0,
Object index1,
Object value2)
Set the value of an element in a list by its index
List
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
ltrim(Object key0,
Object start1,
Object stop2)
Trim a list to the specified range
List
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
mget_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
mget(Object... key0)
Get the values of all the given keys
String
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
migrate(Object host0,
Object port1,
Object key2,
Object destination_db3,
Object timeout4)
Atomically transfer a key from a Redis instance to another one.
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
monitor()
Listen for all requests received by the server in real time
Server
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
move(Object key0,
Object db1)
Move a key to another database
Generic
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
mset_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
mset(Object... key_or_value0)
Set multiple keys to multiple values
String
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
msetnx_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
msetnx(Object... key_or_value0)
Set multiple keys to multiple values, only if none of the keys exist
String
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
object_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<Reply> |
object(Object subcommand0,
Object... arguments1)
Inspect the internals of Redis objects
Generic
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
persist(Object key0)
Remove the expiration from a key
Generic
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
pexpire(Object key0,
Object milliseconds1)
Set a key's time to live in milliseconds
Generic
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
pexpireat(Object key0,
Object milliseconds_timestamp1)
Set the expiration for a key as a UNIX timestamp specified in milliseconds
Generic
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
ping()
Ping the server
Connection
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
psetex(Object key0,
Object milliseconds1,
Object value2)
Set the value and expiration in milliseconds of a key
String
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
pttl(Object key0)
Get the time to live for a key in milliseconds
Generic
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
publish(Object channel0,
Object message1)
Post a message to a channel
Pubsub
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
quit()
Close the connection
Connection
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
randomkey()
Return a random key from the keyspace
Generic
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
rename(Object key0,
Object newkey1)
Rename a key
Generic
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
renamenx(Object key0,
Object newkey1)
Rename a key, only if the new key does not exist
Generic
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
restore(Object key0,
Object ttl1,
Object serialized_value2)
Create a key using the provided serialized value, previously obtained using DUMP.
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
rpop(Object key0)
Remove and get the last element in a list
List
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
rpoplpush(Object source0,
Object destination1)
Remove the last element in a list, append it to another list and return it
List
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
rpush_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
rpush(Object key0,
Object... value1)
Append one or multiple values to a list
List
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
rpushx(Object key0,
Object value1)
Append a value to a list, only if the list exists
List
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
sadd_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
sadd(Object key0,
Object... member1)
Add one or more members to a set
Set
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
save()
Synchronously save the dataset to disk
Server
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
scard(Object key0)
Get the number of members in a set
Set
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
script_exists_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<Reply> |
script_exists(Object... script0)
Check existence of scripts in the script cache.
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
script_flush()
Remove all the scripts from the script cache.
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
script_kill()
Kill the script currently in execution.
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
script_load(Object script0)
Load the specified Lua script into the script cache.
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
sdiff_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
sdiff(Object... key0)
Subtract multiple sets
Set
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
sdiffstore_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
sdiffstore(Object destination0,
Object... key1)
Subtract multiple sets and store the resulting set in a key
Set
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
select(Object index0)
Change the selected database for the current connection
Connection
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
set_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
set(Object key0,
Object value1,
Object... seconds2)
Set the string value of a key
String
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
setbit(Object key0,
Object offset1,
Object value2)
Sets or clears the bit at offset in the string value stored at key
String
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
setex(Object key0,
Object seconds1,
Object value2)
Set the value and expiration of a key
String
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
setnx(Object key0,
Object value1)
Set the value of a key, only if the key does not exist
String
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
setrange(Object key0,
Object offset1,
Object value2)
Overwrite part of a string at key starting at the specified offset
String
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
shutdown_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
shutdown(Object NOSAVE0,
Object SAVE1)
Synchronously save the dataset to disk and then shut down the server
Server
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
sinter_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
sinter(Object... key0)
Intersect multiple sets
Set
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
sinterstore_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
sinterstore(Object destination0,
Object... key1)
Intersect multiple sets and store the resulting set in a key
Set
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
sismember(Object key0,
Object member1)
Determine if a given value is a member of a set
Set
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
slaveof(Object host0,
Object port1)
Make the server a slave of another instance, or promote it as master
Server
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
slowlog_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<Reply> |
slowlog(Object subcommand0,
Object argument1)
Manages the Redis slow queries log
Server
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
smembers(Object key0)
Get all the members in a set
Set
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
smove(Object source0,
Object destination1,
Object member2)
Move a member from one set to another
Set
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
sort_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<Reply> |
sort(Object key0,
Object... pattern1)
Sort the elements in a list, set or sorted set
Generic
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
spop(Object key0)
Remove and return a random member from a set
Set
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
srandmember_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<Reply> |
srandmember(Object key0,
Object count1)
Get one or multiple random members from a set
Set
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
srem_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
srem(Object key0,
Object... member1)
Remove one or more members from a set
Set
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
strlen(Object key0)
Get the length of the value stored in a key
String
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
sunion_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
sunion(Object... key0)
Add multiple sets
Set
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
sunionstore_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
sunionstore(Object destination0,
Object... key1)
Add multiple sets and store the resulting set in a key
Set
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
sync()
Internal command used for replication
Server
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
time()
Return the current server time
Server
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
ttl(Object key0)
Get the time to live for a key
Generic
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
type(Object key0)
Determine the type stored at key
Generic
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
unwatch()
Forget about all watched keys
Transactions
|
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
watch_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<StatusReply> |
watch(Object... key0)
Watch the given keys to determine execution of the MULTI/EXEC block
Transactions
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
zadd(Object... args)
Add one or more members to a sorted set, or update its score if it already exists
Sorted_set
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
zcard(Object key0)
Get the number of members in a sorted set
Sorted_set
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
zcount(Object key0,
Object min1,
Object max2)
Count the members in a sorted set with scores within the given values
Sorted_set
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
zincrby(Object key0,
Object increment1,
Object member2)
Increment the score of a member in a sorted set
Sorted_set
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
zinterstore_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
zinterstore(Object destination0,
Object numkeys1,
Object... key2)
Intersect multiple sorted sets and store the resulting sorted set in a new key
Sorted_set
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
zrange_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
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> |
zrangebyscore_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
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<Reply> |
zrank(Object key0,
Object member1)
Determine the index of a member in a sorted set
Sorted_set
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
zrem_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
zrem(Object key0,
Object... member1)
Remove one or more members from a sorted set
Sorted_set
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
zremrangebyrank(Object key0,
Object start1,
Object stop2)
Remove all members in a sorted set within the given indexes
Sorted_set
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
zremrangebyscore(Object key0,
Object min1,
Object max2)
Remove all members in a sorted set within the given scores
Sorted_set
|
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
zrevrange_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
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> |
zrevrangebyscore_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> |
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
|
com.google.common.util.concurrent.ListenableFuture<Reply> |
zrevrank(Object key0,
Object member1)
Determine the index of a member in a sorted set, with scores ordered from high to low
Sorted_set
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
zscore(Object key0,
Object member1)
Get the score associated with the given member in a sorted set
Sorted_set
|
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
zunionstore_(Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<IntegerReply> |
zunionstore(Object destination0,
Object numkeys1,
Object... key2)
Add multiple sorted sets and store the resulting sorted set in a new key
Sorted_set
|
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> append(Object key0, Object value1) throws RedisException
key0
- value1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> bitcount(Object key0, Object start1, Object end2) throws RedisException
key0
- start1
- end2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> bitcount_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> bitop(Object operation0, Object destkey1, Object... key2) throws RedisException
operation0
- destkey1
- key2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> bitop_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> decr(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> decrby(Object key0, Object decrement1) throws RedisException
key0
- decrement1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> get(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> getbit(Object key0, Object offset1) throws RedisException
key0
- offset1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> getrange(Object key0, Object start1, Object end2) throws RedisException
key0
- start1
- end2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> getset(Object key0, Object value1) throws RedisException
key0
- value1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> incr(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> incrby(Object key0, Object increment1) throws RedisException
key0
- increment1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> incrbyfloat(Object key0, Object increment1) throws RedisException
key0
- increment1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> mget(Object... key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> mget_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> mset(Object... key_or_value0) throws RedisException
key_or_value0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> mset_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> msetnx(Object... key_or_value0) throws RedisException
key_or_value0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> msetnx_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> psetex(Object key0, Object milliseconds1, Object value2) throws RedisException
key0
- milliseconds1
- value2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> set(Object key0, Object value1, Object... seconds2) throws RedisException
key0
- value1
- seconds2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> set_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> setbit(Object key0, Object offset1, Object value2) throws RedisException
key0
- offset1
- value2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> setex(Object key0, Object seconds1, Object value2) throws RedisException
key0
- seconds1
- value2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> setnx(Object key0, Object value1) throws RedisException
key0
- value1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> setrange(Object key0, Object offset1, Object value2) throws RedisException
key0
- offset1
- value2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> strlen(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> echo(Object message0) throws RedisException
message0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> ping() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> quit() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> select(Object index0) throws RedisException
index0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> bgrewriteaof() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> bgsave() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> client_kill(Object ip_port0) throws RedisException
ip_port0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> client_list() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> client_getname() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> client_setname(Object connection_name0) throws RedisException
connection_name0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> config_get(Object parameter0) throws RedisException
parameter0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> config_set(Object parameter0, Object value1) throws RedisException
parameter0
- value1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> config_resetstat() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> dbsize() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> debug_object(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> debug_segfault() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> flushall() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> flushdb() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> info(Object section0) throws RedisException
section0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> info_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> lastsave() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> monitor() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> save() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> shutdown(Object NOSAVE0, Object SAVE1) throws RedisException
NOSAVE0
- SAVE1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> shutdown_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> slaveof(Object host0, Object port1) throws RedisException
host0
- port1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> slowlog(Object subcommand0, Object argument1) throws RedisException
subcommand0
- argument1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> slowlog_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> sync() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> time() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> blpop(Object... key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> blpop_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> brpop(Object... key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> brpop_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> brpoplpush(Object source0, Object destination1, Object timeout2) throws RedisException
source0
- destination1
- timeout2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> lindex(Object key0, Object index1) throws RedisException
key0
- index1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> linsert(Object key0, Object where1, Object pivot2, Object value3) throws RedisException
key0
- where1
- pivot2
- value3
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> llen(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> lpop(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> lpush(Object key0, Object... value1) throws RedisException
key0
- value1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> lpush_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> lpushx(Object key0, Object value1) throws RedisException
key0
- value1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> lrange(Object key0, Object start1, Object stop2) throws RedisException
key0
- start1
- stop2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> lrem(Object key0, Object count1, Object value2) throws RedisException
key0
- count1
- value2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> lset(Object key0, Object index1, Object value2) throws RedisException
key0
- index1
- value2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> ltrim(Object key0, Object start1, Object stop2) throws RedisException
key0
- start1
- stop2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> rpop(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> rpoplpush(Object source0, Object destination1) throws RedisException
source0
- destination1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> rpush(Object key0, Object... value1) throws RedisException
key0
- value1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> rpush_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> rpushx(Object key0, Object value1) throws RedisException
key0
- value1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> del(Object... key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> del_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> dump(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> exists(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> expire(Object key0, Object seconds1) throws RedisException
key0
- seconds1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> expireat(Object key0, Object timestamp1) throws RedisException
key0
- timestamp1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> keys(Object pattern0) throws RedisException
pattern0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> migrate(Object host0, Object port1, Object key2, Object destination_db3, Object timeout4) throws RedisException
host0
- port1
- key2
- destination_db3
- timeout4
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> move(Object key0, Object db1) throws RedisException
key0
- db1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> object(Object subcommand0, Object... arguments1) throws RedisException
subcommand0
- arguments1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> object_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> persist(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> pexpire(Object key0, Object milliseconds1) throws RedisException
key0
- milliseconds1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> pexpireat(Object key0, Object milliseconds_timestamp1) throws RedisException
key0
- milliseconds_timestamp1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> pttl(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> randomkey() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> rename(Object key0, Object newkey1) throws RedisException
key0
- newkey1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> renamenx(Object key0, Object newkey1) throws RedisException
key0
- newkey1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> restore(Object key0, Object ttl1, Object serialized_value2) throws RedisException
key0
- ttl1
- serialized_value2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> sort(Object key0, Object... pattern1) throws RedisException
key0
- pattern1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> sort_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> ttl(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> type(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> unwatch() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> watch(Object... key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> watch_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> eval(Object script0, Object numkeys1, Object... key2) throws RedisException
script0
- numkeys1
- key2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> eval_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> evalsha(Object sha10, Object numkeys1, Object... key2) throws RedisException
sha10
- numkeys1
- key2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> evalsha_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> script_exists(Object... script0) throws RedisException
script0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> script_exists_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> script_flush() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> script_kill() throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> script_load(Object script0) throws RedisException
script0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> hdel(Object key0, Object... field1) throws RedisException
key0
- field1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> hdel_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> hexists(Object key0, Object field1) throws RedisException
key0
- field1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> hget(Object key0, Object field1) throws RedisException
key0
- field1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> hgetall(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> hincrby(Object key0, Object field1, Object increment2) throws RedisException
key0
- field1
- increment2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> hincrbyfloat(Object key0, Object field1, Object increment2) throws RedisException
key0
- field1
- increment2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> hkeys(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> hlen(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> hmget(Object key0, Object... field1) throws RedisException
key0
- field1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> hmget_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> hmset(Object key0, Object... field_or_value1) throws RedisException
key0
- field_or_value1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<StatusReply> hmset_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> hset(Object key0, Object field1, Object value2) throws RedisException
key0
- field1
- value2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> hsetnx(Object key0, Object field1, Object value2) throws RedisException
key0
- field1
- value2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> hvals(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> publish(Object channel0, Object message1) throws RedisException
channel0
- message1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> sadd(Object key0, Object... member1) throws RedisException
key0
- member1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> sadd_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> scard(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> sdiff(Object... key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> sdiff_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> sdiffstore(Object destination0, Object... key1) throws RedisException
destination0
- key1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> sdiffstore_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> sinter(Object... key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> sinter_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> sinterstore(Object destination0, Object... key1) throws RedisException
destination0
- key1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> sinterstore_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> sismember(Object key0, Object member1) throws RedisException
key0
- member1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> smembers(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> smove(Object source0, Object destination1, Object member2) throws RedisException
source0
- destination1
- member2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> spop(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> srandmember(Object key0, Object count1) throws RedisException
key0
- count1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> srandmember_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> srem(Object key0, Object... member1) throws RedisException
key0
- member1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> srem_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> sunion(Object... key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> sunion_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> sunionstore(Object destination0, Object... key1) throws RedisException
destination0
- key1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> sunionstore_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> zadd(Object... args) throws RedisException
args
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> zcard(Object key0) throws RedisException
key0
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> zcount(Object key0, Object min1, Object max2) throws RedisException
key0
- min1
- max2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> zincrby(Object key0, Object increment1, Object member2) throws RedisException
key0
- increment1
- member2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> zinterstore(Object destination0, Object numkeys1, Object... key2) throws RedisException
destination0
- numkeys1
- key2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> zinterstore_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> zrange(Object key0, Object start1, Object stop2, Object withscores3) throws RedisException
key0
- start1
- stop2
- withscores3
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> zrange_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> zrangebyscore(Object key0, Object min1, Object max2, Object withscores3, Object... offset_or_count4) throws RedisException
key0
- min1
- max2
- withscores3
- offset_or_count4
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> zrangebyscore_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> zrank(Object key0, Object member1) throws RedisException
key0
- member1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> zrem(Object key0, Object... member1) throws RedisException
key0
- member1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> zrem_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> zremrangebyrank(Object key0, Object start1, Object stop2) throws RedisException
key0
- start1
- stop2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> zremrangebyscore(Object key0, Object min1, Object max2) throws RedisException
key0
- min1
- max2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> zrevrange(Object key0, Object start1, Object stop2, Object withscores3) throws RedisException
key0
- start1
- stop2
- withscores3
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> zrevrange_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> zrevrangebyscore(Object key0, Object max1, Object min2, Object withscores3, Object... offset_or_count4) throws RedisException
key0
- max1
- min2
- withscores3
- offset_or_count4
- RedisException
public com.google.common.util.concurrent.ListenableFuture<MultiBulkReply> zrevrangebyscore_(Object... arguments) throws RedisException
RedisException
public com.google.common.util.concurrent.ListenableFuture<Reply> zrevrank(Object key0, Object member1) throws RedisException
key0
- member1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<BulkReply> zscore(Object key0, Object member1) throws RedisException
key0
- member1
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> zunionstore(Object destination0, Object numkeys1, Object... key2) throws RedisException
destination0
- numkeys1
- key2
- RedisException
public com.google.common.util.concurrent.ListenableFuture<IntegerReply> zunionstore_(Object... arguments) throws RedisException
RedisException
Copyright © 2015. All rights reserved.