A B C D E F G H I K L M O P Q R S T U W Z 

A

append(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Append a value to a key String
append(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Append a value to a key String
auth(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Authenticate to the server Connection

B

bgrewriteaof() - Method in interface redis.server.netty.RedisServer
Asynchronously rewrite the append-only file Server
bgrewriteaof() - Method in class redis.server.netty.SimpleRedisServer
Asynchronously rewrite the append-only file Server
bgsave() - Method in interface redis.server.netty.RedisServer
Asynchronously save the dataset to disk Server
bgsave() - Method in class redis.server.netty.SimpleRedisServer
Asynchronously save the dataset to disk Server
bitcount(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Count set bits in a string String
bitcount(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Count set bits in a string String
bitop(byte[], byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Perform bitwise operations between strings String
bitop(byte[], byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Perform bitwise operations between strings String
blpop(byte[][]) - Method in interface redis.server.netty.RedisServer
Remove and get the first element in a list, or block until one is available List
blpop(byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Remove and get the first element in a list, or block until one is available List
brpop(byte[][]) - Method in interface redis.server.netty.RedisServer
Remove and get the last element in a list, or block until one is available List
brpop(byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Remove and get the last element in a list, or block until one is available List
brpoplpush(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Pop a value from a list, push it to another list and return it; or block until one is available List
brpoplpush(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Pop a value from a list, push it to another list and return it; or block until one is available List

C

channelRead0(ChannelHandlerContext, Command) - Method in class redis.server.netty.RedisCommandHandler
 
channelReadComplete(ChannelHandlerContext) - Method in class redis.server.netty.RedisCommandHandler
 
client_getname() - Method in interface redis.server.netty.RedisServer
Get the current connection name Server
client_getname() - Method in class redis.server.netty.SimpleRedisServer
Get the current connection name Server
client_kill(byte[]) - Method in interface redis.server.netty.RedisServer
Kill the connection of a client Server
client_kill(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Kill the connection of a client Server
client_list() - Method in interface redis.server.netty.RedisServer
Get the list of client connections Server
client_list() - Method in class redis.server.netty.SimpleRedisServer
Get the list of client connections Server
client_setname(byte[]) - Method in interface redis.server.netty.RedisServer
Set the current connection name Server
client_setname(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Set the current connection name Server
config_get(byte[]) - Method in interface redis.server.netty.RedisServer
Get the value of a configuration parameter Server
config_get(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get the value of a configuration parameter Server
config_resetstat() - Method in interface redis.server.netty.RedisServer
Reset the stats returned by INFO Server
config_resetstat() - Method in class redis.server.netty.SimpleRedisServer
Reset the stats returned by INFO Server
config_set(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Set a configuration parameter to the given value Server
config_set(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Set a configuration parameter to the given value Server

D

dbsize() - Method in interface redis.server.netty.RedisServer
Return the number of keys in the selected database Server
dbsize() - Method in class redis.server.netty.SimpleRedisServer
Return the number of keys in the selected database Server
debug_object(byte[]) - Method in interface redis.server.netty.RedisServer
Get debugging information about a key Server
debug_object(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get debugging information about a key Server
debug_segfault() - Method in interface redis.server.netty.RedisServer
Make the server crash Server
debug_segfault() - Method in class redis.server.netty.SimpleRedisServer
Make the server crash Server
decode(ChannelHandlerContext, ByteBuf, List<Object>) - Method in class redis.server.netty.RedisCommandDecoder
 
decr(byte[]) - Method in interface redis.server.netty.RedisServer
Decrement the integer value of a key by one String
decr(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Decrement the integer value of a key by one String
decrby(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Decrement the integer value of a key by the given number String
decrby(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Decrement the integer value of a key by the given number String
del(byte[][]) - Method in interface redis.server.netty.RedisServer
Delete a key Generic
del(byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Delete a key Generic
dump(byte[]) - Method in interface redis.server.netty.RedisServer
Return a serialized version of the value stored at the specified key.
dump(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Return a serialized version of the value stored at the specified key.

E

echo(byte[]) - Method in interface redis.server.netty.RedisServer
Echo the given string Connection
echo(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Echo the given string Connection
encode(ChannelHandlerContext, Reply, ByteBuf) - Method in class redis.server.netty.RedisReplyEncoder
 
eval(byte[], byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Execute a Lua script server side Scripting
eval(byte[], byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Execute a Lua script server side Scripting
evalsha(byte[], byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Execute a Lua script server side Scripting
evalsha(byte[], byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Execute a Lua script server side Scripting
exists(byte[]) - Method in interface redis.server.netty.RedisServer
Determine if a key exists Generic
exists(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Determine if a key exists Generic
expire(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Set a key's time to live in seconds Generic
expire(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Set a key's time to live in seconds Generic
expireat(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Set the expiration for a key as a UNIX timestamp Generic
expireat(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Set the expiration for a key as a UNIX timestamp Generic

F

flushall() - Method in interface redis.server.netty.RedisServer
Remove all keys from all databases Server
flushall() - Method in class redis.server.netty.SimpleRedisServer
Remove all keys from all databases Server
flushdb() - Method in interface redis.server.netty.RedisServer
Remove all keys from the current database Server
flushdb() - Method in class redis.server.netty.SimpleRedisServer
Remove all keys from the current database Server

G

get(byte[]) - Method in interface redis.server.netty.RedisServer
Get the value of a key String
get(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get the value of a key String
getbit(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Returns the bit value at offset in the string value stored at key String
getbit(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Returns the bit value at offset in the string value stored at key String
getrange(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Get a substring of the string stored at a key String
getrange(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get a substring of the string stored at a key String
getset(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Set the string value of a key and return its old value String
getset(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Set the string value of a key and return its old value String

H

hdel(byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Delete one or more hash fields Hash
hdel(byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Delete one or more hash fields Hash
hexists(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Determine if a hash field exists Hash
hexists(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Determine if a hash field exists Hash
hget(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Get the value of a hash field Hash
hget(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get the value of a hash field Hash
hgetall(byte[]) - Method in interface redis.server.netty.RedisServer
Get all the fields and values in a hash Hash
hgetall(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get all the fields and values in a hash Hash
hincrby(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Increment the integer value of a hash field by the given number Hash
hincrby(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Increment the integer value of a hash field by the given number Hash
hincrbyfloat(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Increment the float value of a hash field by the given amount Hash
hincrbyfloat(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Increment the float value of a hash field by the given amount Hash
hkeys(byte[]) - Method in interface redis.server.netty.RedisServer
Get all the fields in a hash Hash
hkeys(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get all the fields in a hash Hash
hlen(byte[]) - Method in interface redis.server.netty.RedisServer
Get the number of fields in a hash Hash
hlen(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get the number of fields in a hash Hash
hmget(byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Get the values of all the given hash fields Hash
hmget(byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Get the values of all the given hash fields Hash
hmset(byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Set multiple hash fields to multiple values Hash
hmset(byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Set multiple hash fields to multiple values Hash
hset(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Set the string value of a hash field Hash
hset(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Set the string value of a hash field Hash
hsetnx(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Set the value of a hash field, only if the field does not exist Hash
hsetnx(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Set the value of a hash field, only if the field does not exist Hash
hvals(byte[]) - Method in interface redis.server.netty.RedisServer
Get all the values in a hash Hash
hvals(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get all the values in a hash Hash

I

incr(byte[]) - Method in interface redis.server.netty.RedisServer
Increment the integer value of a key by one String
incr(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Increment the integer value of a key by one String
incrby(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Increment the integer value of a key by the given amount String
incrby(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Increment the integer value of a key by the given amount String
incrbyfloat(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Increment the float value of a key by the given amount String
incrbyfloat(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Increment the float value of a key by the given amount String
info(byte[]) - Method in interface redis.server.netty.RedisServer
Get information and statistics about the server Server
info(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get information and statistics about the server Server

K

keys(byte[]) - Method in interface redis.server.netty.RedisServer
Find all keys matching the given pattern Generic
keys(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Find all keys matching the given pattern Generic

L

lastsave() - Method in interface redis.server.netty.RedisServer
Get the UNIX time stamp of the last successful save to disk Server
lastsave() - Method in class redis.server.netty.SimpleRedisServer
Get the UNIX time stamp of the last successful save to disk Server
lindex(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Get an element from a list by its index List
lindex(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get an element from a list by its index List
linsert(byte[], byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Insert an element before or after another element in a list List
linsert(byte[], byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Insert an element before or after another element in a list List
llen(byte[]) - Method in interface redis.server.netty.RedisServer
Get the length of a list List
llen(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get the length of a list List
lpop(byte[]) - Method in interface redis.server.netty.RedisServer
Remove and get the first element in a list List
lpop(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Remove and get the first element in a list List
lpush(byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Prepend one or multiple values to a list List
lpush(byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Prepend one or multiple values to a list List
lpushx(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Prepend a value to a list, only if the list exists List
lpushx(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Prepend a value to a list, only if the list exists List
lrange(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Get a range of elements from a list List
lrange(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get a range of elements from a list List
lrem(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Remove elements from a list List
lrem(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Remove elements from a list List
lset(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Set the value of an element in a list by its index List
lset(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Set the value of an element in a list by its index List
ltrim(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Trim a list to the specified range List
ltrim(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Trim a list to the specified range List

M

Main - Class in redis.server.netty
Redis server
Main() - Constructor for class redis.server.netty.Main
 
main(String[]) - Static method in class redis.server.netty.Main
 
mget(byte[][]) - Method in interface redis.server.netty.RedisServer
Get the values of all the given keys String
mget(byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Get the values of all the given keys String
migrate(byte[], byte[], byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Atomically transfer a key from a Redis instance to another one.
migrate(byte[], byte[], byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Atomically transfer a key from a Redis instance to another one.
monitor() - Method in interface redis.server.netty.RedisServer
Listen for all requests received by the server in real time Server
monitor() - Method in class redis.server.netty.SimpleRedisServer
Listen for all requests received by the server in real time Server
move(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Move a key to another database Generic
move(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Move a key to another database Generic
mset(byte[][]) - Method in interface redis.server.netty.RedisServer
Set multiple keys to multiple values String
mset(byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Set multiple keys to multiple values String
msetnx(byte[][]) - Method in interface redis.server.netty.RedisServer
Set multiple keys to multiple values, only if none of the keys exist String
msetnx(byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Set multiple keys to multiple values, only if none of the keys exist String

O

object(byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Inspect the internals of Redis objects Generic
object(byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Inspect the internals of Redis objects Generic

P

persist(byte[]) - Method in interface redis.server.netty.RedisServer
Remove the expiration from a key Generic
persist(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Remove the expiration from a key Generic
pexpire(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Set a key's time to live in milliseconds Generic
pexpire(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Set a key's time to live in milliseconds Generic
pexpireat(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Set the expiration for a key as a UNIX timestamp specified in milliseconds Generic
pexpireat(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Set the expiration for a key as a UNIX timestamp specified in milliseconds Generic
ping() - Method in interface redis.server.netty.RedisServer
Ping the server Connection
ping() - Method in class redis.server.netty.SimpleRedisServer
Ping the server Connection
psetex(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Set the value and expiration in milliseconds of a key String
psetex(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Set the value and expiration in milliseconds of a key String
pttl(byte[]) - Method in interface redis.server.netty.RedisServer
Get the time to live for a key in milliseconds Generic
pttl(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get the time to live for a key in milliseconds Generic
publish(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Post a message to a channel Pubsub
publish(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Post a message to a channel Pubsub

Q

quit() - Method in interface redis.server.netty.RedisServer
Close the connection Connection
quit() - Method in class redis.server.netty.SimpleRedisServer
Close the connection Connection

R

randomkey() - Method in interface redis.server.netty.RedisServer
Return a random key from the keyspace Generic
randomkey() - Method in class redis.server.netty.SimpleRedisServer
Return a random key from the keyspace Generic
redis.server.netty - package redis.server.netty
 
RedisCommandDecoder - Class in redis.server.netty
Decode commands.
RedisCommandDecoder() - Constructor for class redis.server.netty.RedisCommandDecoder
 
RedisCommandHandler - Class in redis.server.netty
Handle decoded commands
RedisCommandHandler(RedisServer) - Constructor for class redis.server.netty.RedisCommandHandler
 
RedisException - Exception in redis.server.netty
Server exception
RedisException() - Constructor for exception redis.server.netty.RedisException
 
RedisException(Throwable) - Constructor for exception redis.server.netty.RedisException
 
RedisException(String) - Constructor for exception redis.server.netty.RedisException
 
RedisException(String, Throwable) - Constructor for exception redis.server.netty.RedisException
 
RedisException(String, Throwable, boolean, boolean) - Constructor for exception redis.server.netty.RedisException
 
RedisReplyEncoder - Class in redis.server.netty
Write a reply.
RedisReplyEncoder() - Constructor for class redis.server.netty.RedisReplyEncoder
 
RedisServer - Interface in redis.server.netty
 
rename(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Rename a key Generic
rename(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Rename a key Generic
renamenx(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Rename a key, only if the new key does not exist Generic
renamenx(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Rename a key, only if the new key does not exist Generic
restore(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Create a key using the provided serialized value, previously obtained using DUMP.
restore(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Create a key using the provided serialized value, previously obtained using DUMP.
rpop(byte[]) - Method in interface redis.server.netty.RedisServer
Remove and get the last element in a list List
rpop(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Remove and get the last element in a list List
rpoplpush(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Remove the last element in a list, append it to another list and return it List
rpoplpush(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Remove the last element in a list, append it to another list and return it List
rpush(byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Append one or multiple values to a list List
rpush(byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Append one or multiple values to a list List
rpushx(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Append a value to a list, only if the list exists List
rpushx(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Append a value to a list, only if the list exists List

S

sadd(byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Add one or more members to a set Set
sadd(byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Add one or more members to a set Set
save() - Method in interface redis.server.netty.RedisServer
Synchronously save the dataset to disk Server
save() - Method in class redis.server.netty.SimpleRedisServer
Synchronously save the dataset to disk Server
scard(byte[]) - Method in interface redis.server.netty.RedisServer
Get the number of members in a set Set
scard(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get the number of members in a set Set
script_exists(byte[][]) - Method in interface redis.server.netty.RedisServer
Check existence of scripts in the script cache.
script_exists(byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Check existence of scripts in the script cache.
script_flush() - Method in interface redis.server.netty.RedisServer
Remove all the scripts from the script cache.
script_flush() - Method in class redis.server.netty.SimpleRedisServer
Remove all the scripts from the script cache.
script_kill() - Method in interface redis.server.netty.RedisServer
Kill the script currently in execution.
script_kill() - Method in class redis.server.netty.SimpleRedisServer
Kill the script currently in execution.
script_load(byte[]) - Method in interface redis.server.netty.RedisServer
Load the specified Lua script into the script cache.
script_load(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Load the specified Lua script into the script cache.
sdiff(byte[][]) - Method in interface redis.server.netty.RedisServer
Subtract multiple sets Set
sdiff(byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Subtract multiple sets Set
sdiffstore(byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Subtract multiple sets and store the resulting set in a key Set
sdiffstore(byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Subtract multiple sets and store the resulting set in a key Set
select(byte[]) - Method in interface redis.server.netty.RedisServer
Change the selected database for the current connection Connection
select(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Change the selected database for the current connection Connection
set(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Set the string value of a key String
set(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Set the string value of a key String
setbit(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Sets or clears the bit at offset in the string value stored at key String
setbit(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Sets or clears the bit at offset in the string value stored at key String
setex(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Set the value and expiration of a key String
setex(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Set the value and expiration of a key String
setnx(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Set the value of a key, only if the key does not exist String
setnx(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Set the value of a key, only if the key does not exist String
setrange(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Overwrite part of a string at key starting at the specified offset String
setrange(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Overwrite part of a string at key starting at the specified offset String
shutdown(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Synchronously save the dataset to disk and then shut down the server Server
shutdown(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Synchronously save the dataset to disk and then shut down the server Server
SimpleRedisServer - Class in redis.server.netty
 
SimpleRedisServer() - Constructor for class redis.server.netty.SimpleRedisServer
 
sinter(byte[][]) - Method in interface redis.server.netty.RedisServer
Intersect multiple sets Set
sinter(byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Intersect multiple sets Set
sinterstore(byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Intersect multiple sets and store the resulting set in a key Set
sinterstore(byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Intersect multiple sets and store the resulting set in a key Set
sismember(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Determine if a given value is a member of a set Set
sismember(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Determine if a given value is a member of a set Set
slaveof(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Make the server a slave of another instance, or promote it as master Server
slaveof(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Make the server a slave of another instance, or promote it as master Server
slowlog(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Manages the Redis slow queries log Server
slowlog(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Manages the Redis slow queries log Server
smembers(byte[]) - Method in interface redis.server.netty.RedisServer
Get all the members in a set Set
smembers(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get all the members in a set Set
smove(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Move a member from one set to another Set
smove(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Move a member from one set to another Set
sort(byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Sort the elements in a list, set or sorted set Generic
sort(byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Sort the elements in a list, set or sorted set Generic

SORT key [BY pattern] [LIMIT offset count] [GET pattern [GET pattern ...]]

spop(byte[]) - Method in interface redis.server.netty.RedisServer
Remove and return a random member from a set Set
spop(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Remove and return a random member from a set Set
srandmember(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Get one or multiple random members from a set Set
srandmember(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get a random member from a set Set
srem(byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Remove one or more members from a set Set
srem(byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Remove one or more members from a set Set
strlen(byte[]) - Method in interface redis.server.netty.RedisServer
Get the length of the value stored in a key String
strlen(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get the length of the value stored in a key String
sunion(byte[][]) - Method in interface redis.server.netty.RedisServer
Add multiple sets Set
sunion(byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Add multiple sets Set
sunionstore(byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Add multiple sets and store the resulting set in a key Set
sunionstore(byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Add multiple sets and store the resulting set in a key Set
sync() - Method in interface redis.server.netty.RedisServer
Internal command used for replication Server
sync() - Method in class redis.server.netty.SimpleRedisServer
Internal command used for replication Server

T

time() - Method in interface redis.server.netty.RedisServer
Return the current server time Server
time() - Method in class redis.server.netty.SimpleRedisServer
Return the current server time Server
ttl(byte[]) - Method in interface redis.server.netty.RedisServer
Get the time to live for a key Generic
ttl(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get the time to live for a key Generic
type(byte[]) - Method in interface redis.server.netty.RedisServer
Determine the type stored at key Generic
type(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Determine the type stored at key Generic

U

unwatch() - Method in interface redis.server.netty.RedisServer
Forget about all watched keys Transactions
unwatch() - Method in class redis.server.netty.SimpleRedisServer
Forget about all watched keys Transactions

W

watch(byte[][]) - Method in interface redis.server.netty.RedisServer
Watch the given keys to determine execution of the MULTI/EXEC block Transactions
watch(byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Watch the given keys to determine execution of the MULTI/EXEC block Transactions

Z

zadd(byte[][]) - Method in interface redis.server.netty.RedisServer
Add one or more members to a sorted set, or update its score if it already exists Sorted_set
zadd(byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Add one or more members to a sorted set, or update its score if it already exists Sorted_set
zcard(byte[]) - Method in interface redis.server.netty.RedisServer
Get the number of members in a sorted set Sorted_set
zcard(byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get the number of members in a sorted set Sorted_set
zcount(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Count the members in a sorted set with scores within the given values Sorted_set
zcount(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Count the members in a sorted set with scores within the given values Sorted_set
zincrby(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Increment the score of a member in a sorted set Sorted_set
zincrby(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Increment the score of a member in a sorted set Sorted_set
zinterstore(byte[], byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Intersect multiple sorted sets and store the resulting sorted set in a new key Sorted_set
zinterstore(byte[], byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Intersect multiple sorted sets and store the resulting sorted set in a new key Sorted_set
zrange(byte[], byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Return a range of members in a sorted set, by index Sorted_set
zrange(byte[], byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Return a range of members in a sorted set, by index Sorted_set
zrangebyscore(byte[], byte[], byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Return a range of members in a sorted set, by score Sorted_set
zrangebyscore(byte[], byte[], byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Return a range of members in a sorted set, by score Sorted_set
zrank(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Determine the index of a member in a sorted set Sorted_set
zrank(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Determine the index of a member in a sorted set Sorted_set
zrem(byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Remove one or more members from a sorted set Sorted_set
zrem(byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Remove one or more members from a sorted set Sorted_set
zremrangebyrank(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Remove all members in a sorted set within the given indexes Sorted_set
zremrangebyrank(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Remove all members in a sorted set within the given indexes Sorted_set
zremrangebyscore(byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Remove all members in a sorted set within the given scores Sorted_set
zremrangebyscore(byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Remove all members in a sorted set within the given scores Sorted_set
zrevrange(byte[], byte[], byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Return a range of members in a sorted set, by index, with scores ordered from high to low Sorted_set
zrevrange(byte[], byte[], byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Return a range of members in a sorted set, by index, with scores ordered from high to low Sorted_set
zrevrangebyscore(byte[], byte[], byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Return a range of members in a sorted set, by score, with scores ordered from high to low Sorted_set
zrevrangebyscore(byte[], byte[], byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Return a range of members in a sorted set, by score, with scores ordered from high to low Sorted_set
zrevrank(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Determine the index of a member in a sorted set, with scores ordered from high to low Sorted_set
zrevrank(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Determine the index of a member in a sorted set, with scores ordered from high to low Sorted_set
zscore(byte[], byte[]) - Method in interface redis.server.netty.RedisServer
Get the score associated with the given member in a sorted set Sorted_set
zscore(byte[], byte[]) - Method in class redis.server.netty.SimpleRedisServer
Get the score associated with the given member in a sorted set Sorted_set
zunionstore(byte[], byte[], byte[][]) - Method in interface redis.server.netty.RedisServer
Add multiple sorted sets and store the resulting sorted set in a new key Sorted_set
zunionstore(byte[], byte[], byte[][]) - Method in class redis.server.netty.SimpleRedisServer
Add multiple sorted sets and store the resulting sorted set in a new key Sorted_set
A B C D E F G H I K L M O P Q R S T U W Z 

Copyright © 2014. All rights reserved.