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