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