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