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