public interface RedisServer
| Modifier and Type | Method and Description |
|---|---|
IntegerReply |
append(byte[] key0,
byte[] value1)
Append a value to a key
String
|
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[] section0)
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)
Sort the elements in a list, set or sorted set
Generic
|
BulkReply |
spop(byte[] key0)
Remove and return a random member from a set
Set
|
Reply |
srandmember(byte[] key0,
byte[] count1)
Get one or multiple random members 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
|
IntegerReply append(byte[] key0, byte[] value1) throws RedisException
key0 - value1 - RedisExceptionIntegerReply bitcount(byte[] key0, byte[] start1, byte[] end2) throws RedisException
key0 - start1 - end2 - RedisExceptionIntegerReply bitop(byte[] operation0, byte[] destkey1, byte[][] key2) throws RedisException
operation0 - destkey1 - key2 - RedisExceptionIntegerReply decr(byte[] key0) throws RedisException
key0 - RedisExceptionIntegerReply decrby(byte[] key0, byte[] decrement1) throws RedisException
key0 - decrement1 - RedisExceptionBulkReply get(byte[] key0) throws RedisException
key0 - RedisExceptionIntegerReply getbit(byte[] key0, byte[] offset1) throws RedisException
key0 - offset1 - RedisExceptionBulkReply getrange(byte[] key0, byte[] start1, byte[] end2) throws RedisException
key0 - start1 - end2 - RedisExceptionBulkReply getset(byte[] key0, byte[] value1) throws RedisException
key0 - value1 - RedisExceptionIntegerReply incr(byte[] key0) throws RedisException
key0 - RedisExceptionIntegerReply incrby(byte[] key0, byte[] increment1) throws RedisException
key0 - increment1 - RedisExceptionBulkReply incrbyfloat(byte[] key0, byte[] increment1) throws RedisException
key0 - increment1 - RedisExceptionMultiBulkReply mget(byte[][] key0) throws RedisException
key0 - RedisExceptionStatusReply mset(byte[][] key_or_value0) throws RedisException
key_or_value0 - RedisExceptionIntegerReply msetnx(byte[][] key_or_value0) throws RedisException
key_or_value0 - RedisExceptionReply psetex(byte[] key0, byte[] milliseconds1, byte[] value2) throws RedisException
key0 - milliseconds1 - value2 - RedisExceptionStatusReply set(byte[] key0, byte[] value1) throws RedisException
key0 - value1 - RedisExceptionIntegerReply setbit(byte[] key0, byte[] offset1, byte[] value2) throws RedisException
key0 - offset1 - value2 - RedisExceptionStatusReply setex(byte[] key0, byte[] seconds1, byte[] value2) throws RedisException
key0 - seconds1 - value2 - RedisExceptionIntegerReply setnx(byte[] key0, byte[] value1) throws RedisException
key0 - value1 - RedisExceptionIntegerReply setrange(byte[] key0, byte[] offset1, byte[] value2) throws RedisException
key0 - offset1 - value2 - RedisExceptionIntegerReply strlen(byte[] key0) throws RedisException
key0 - RedisExceptionBulkReply echo(byte[] message0) throws RedisException
message0 - RedisExceptionStatusReply ping() throws RedisException
RedisExceptionStatusReply quit() throws RedisException
RedisExceptionStatusReply select(byte[] index0) throws RedisException
index0 - RedisExceptionStatusReply bgrewriteaof() throws RedisException
RedisExceptionStatusReply bgsave() throws RedisException
RedisExceptionReply client_kill(byte[] ip_port0) throws RedisException
ip_port0 - RedisExceptionReply client_list() throws RedisException
RedisExceptionReply client_getname() throws RedisException
RedisExceptionReply client_setname(byte[] connection_name0) throws RedisException
connection_name0 - RedisExceptionReply config_get(byte[] parameter0) throws RedisException
parameter0 - RedisExceptionReply config_set(byte[] parameter0, byte[] value1) throws RedisException
parameter0 - value1 - RedisExceptionReply config_resetstat() throws RedisException
RedisExceptionIntegerReply dbsize() throws RedisException
RedisExceptionReply debug_object(byte[] key0) throws RedisException
key0 - RedisExceptionReply debug_segfault() throws RedisException
RedisExceptionStatusReply flushall() throws RedisException
RedisExceptionStatusReply flushdb() throws RedisException
RedisExceptionBulkReply info(byte[] section0) throws RedisException
section0 - RedisExceptionIntegerReply lastsave() throws RedisException
RedisExceptionReply monitor() throws RedisException
RedisExceptionReply save() throws RedisException
RedisExceptionStatusReply shutdown(byte[] NOSAVE0, byte[] SAVE1) throws RedisException
NOSAVE0 - SAVE1 - RedisExceptionStatusReply slaveof(byte[] host0, byte[] port1) throws RedisException
host0 - port1 - RedisExceptionReply slowlog(byte[] subcommand0, byte[] argument1) throws RedisException
subcommand0 - argument1 - RedisExceptionReply sync() throws RedisException
RedisExceptionMultiBulkReply time() throws RedisException
RedisExceptionMultiBulkReply blpop(byte[][] key0) throws RedisException
key0 - RedisExceptionMultiBulkReply brpop(byte[][] key0) throws RedisException
key0 - RedisExceptionBulkReply brpoplpush(byte[] source0, byte[] destination1, byte[] timeout2) throws RedisException
source0 - destination1 - timeout2 - RedisExceptionBulkReply lindex(byte[] key0, byte[] index1) throws RedisException
key0 - index1 - RedisExceptionIntegerReply linsert(byte[] key0, byte[] where1, byte[] pivot2, byte[] value3) throws RedisException
key0 - where1 - pivot2 - value3 - RedisExceptionIntegerReply llen(byte[] key0) throws RedisException
key0 - RedisExceptionBulkReply lpop(byte[] key0) throws RedisException
key0 - RedisExceptionIntegerReply lpush(byte[] key0, byte[][] value1) throws RedisException
key0 - value1 - RedisExceptionIntegerReply lpushx(byte[] key0, byte[] value1) throws RedisException
key0 - value1 - RedisExceptionMultiBulkReply lrange(byte[] key0, byte[] start1, byte[] stop2) throws RedisException
key0 - start1 - stop2 - RedisExceptionIntegerReply lrem(byte[] key0, byte[] count1, byte[] value2) throws RedisException
key0 - count1 - value2 - RedisExceptionStatusReply lset(byte[] key0, byte[] index1, byte[] value2) throws RedisException
key0 - index1 - value2 - RedisExceptionStatusReply ltrim(byte[] key0, byte[] start1, byte[] stop2) throws RedisException
key0 - start1 - stop2 - RedisExceptionBulkReply rpop(byte[] key0) throws RedisException
key0 - RedisExceptionBulkReply rpoplpush(byte[] source0, byte[] destination1) throws RedisException
source0 - destination1 - RedisExceptionIntegerReply rpush(byte[] key0, byte[][] value1) throws RedisException
key0 - value1 - RedisExceptionIntegerReply rpushx(byte[] key0, byte[] value1) throws RedisException
key0 - value1 - RedisExceptionIntegerReply del(byte[][] key0) throws RedisException
key0 - RedisExceptionBulkReply dump(byte[] key0) throws RedisException
key0 - RedisExceptionIntegerReply exists(byte[] key0) throws RedisException
key0 - RedisExceptionIntegerReply expire(byte[] key0, byte[] seconds1) throws RedisException
key0 - seconds1 - RedisExceptionIntegerReply expireat(byte[] key0, byte[] timestamp1) throws RedisException
key0 - timestamp1 - RedisExceptionMultiBulkReply keys(byte[] pattern0) throws RedisException
pattern0 - RedisExceptionStatusReply migrate(byte[] host0, byte[] port1, byte[] key2, byte[] destination_db3, byte[] timeout4) throws RedisException
host0 - port1 - key2 - destination_db3 - timeout4 - RedisExceptionIntegerReply move(byte[] key0, byte[] db1) throws RedisException
key0 - db1 - RedisExceptionReply object(byte[] subcommand0, byte[][] arguments1) throws RedisException
subcommand0 - arguments1 - RedisExceptionIntegerReply persist(byte[] key0) throws RedisException
key0 - RedisExceptionIntegerReply pexpire(byte[] key0, byte[] milliseconds1) throws RedisException
key0 - milliseconds1 - RedisExceptionIntegerReply pexpireat(byte[] key0, byte[] milliseconds_timestamp1) throws RedisException
key0 - milliseconds_timestamp1 - RedisExceptionIntegerReply pttl(byte[] key0) throws RedisException
key0 - RedisExceptionBulkReply randomkey() throws RedisException
RedisExceptionStatusReply rename(byte[] key0, byte[] newkey1) throws RedisException
key0 - newkey1 - RedisExceptionIntegerReply renamenx(byte[] key0, byte[] newkey1) throws RedisException
key0 - newkey1 - RedisExceptionStatusReply restore(byte[] key0, byte[] ttl1, byte[] serialized_value2) throws RedisException
key0 - ttl1 - serialized_value2 - RedisExceptionReply sort(byte[] key0, byte[][] pattern1) throws RedisException
key0 - pattern1 - RedisExceptionIntegerReply ttl(byte[] key0) throws RedisException
key0 - RedisExceptionStatusReply type(byte[] key0) throws RedisException
key0 - RedisExceptionStatusReply unwatch() throws RedisException
RedisExceptionStatusReply watch(byte[][] key0) throws RedisException
key0 - RedisExceptionReply eval(byte[] script0, byte[] numkeys1, byte[][] key2) throws RedisException
script0 - numkeys1 - key2 - RedisExceptionReply evalsha(byte[] sha10, byte[] numkeys1, byte[][] key2) throws RedisException
sha10 - numkeys1 - key2 - RedisExceptionReply script_exists(byte[][] script0) throws RedisException
script0 - RedisExceptionReply script_flush() throws RedisException
RedisExceptionReply script_kill() throws RedisException
RedisExceptionReply script_load(byte[] script0) throws RedisException
script0 - RedisExceptionIntegerReply hdel(byte[] key0, byte[][] field1) throws RedisException
key0 - field1 - RedisExceptionIntegerReply hexists(byte[] key0, byte[] field1) throws RedisException
key0 - field1 - RedisExceptionBulkReply hget(byte[] key0, byte[] field1) throws RedisException
key0 - field1 - RedisExceptionMultiBulkReply hgetall(byte[] key0) throws RedisException
key0 - RedisExceptionIntegerReply hincrby(byte[] key0, byte[] field1, byte[] increment2) throws RedisException
key0 - field1 - increment2 - RedisExceptionBulkReply hincrbyfloat(byte[] key0, byte[] field1, byte[] increment2) throws RedisException
key0 - field1 - increment2 - RedisExceptionMultiBulkReply hkeys(byte[] key0) throws RedisException
key0 - RedisExceptionIntegerReply hlen(byte[] key0) throws RedisException
key0 - RedisExceptionMultiBulkReply hmget(byte[] key0, byte[][] field1) throws RedisException
key0 - field1 - RedisExceptionStatusReply hmset(byte[] key0, byte[][] field_or_value1) throws RedisException
key0 - field_or_value1 - RedisExceptionIntegerReply hset(byte[] key0, byte[] field1, byte[] value2) throws RedisException
key0 - field1 - value2 - RedisExceptionIntegerReply hsetnx(byte[] key0, byte[] field1, byte[] value2) throws RedisException
key0 - field1 - value2 - RedisExceptionMultiBulkReply hvals(byte[] key0) throws RedisException
key0 - RedisExceptionIntegerReply publish(byte[] channel0, byte[] message1) throws RedisException
channel0 - message1 - RedisExceptionIntegerReply sadd(byte[] key0, byte[][] member1) throws RedisException
key0 - member1 - RedisExceptionIntegerReply scard(byte[] key0) throws RedisException
key0 - RedisExceptionMultiBulkReply sdiff(byte[][] key0) throws RedisException
key0 - RedisExceptionIntegerReply sdiffstore(byte[] destination0, byte[][] key1) throws RedisException
destination0 - key1 - RedisExceptionMultiBulkReply sinter(byte[][] key0) throws RedisException
key0 - RedisExceptionIntegerReply sinterstore(byte[] destination0, byte[][] key1) throws RedisException
destination0 - key1 - RedisExceptionIntegerReply sismember(byte[] key0, byte[] member1) throws RedisException
key0 - member1 - RedisExceptionMultiBulkReply smembers(byte[] key0) throws RedisException
key0 - RedisExceptionIntegerReply smove(byte[] source0, byte[] destination1, byte[] member2) throws RedisException
source0 - destination1 - member2 - RedisExceptionBulkReply spop(byte[] key0) throws RedisException
key0 - RedisExceptionReply srandmember(byte[] key0, byte[] count1) throws RedisException
key0 - count1 - RedisExceptionIntegerReply srem(byte[] key0, byte[][] member1) throws RedisException
key0 - member1 - RedisExceptionMultiBulkReply sunion(byte[][] key0) throws RedisException
key0 - RedisExceptionIntegerReply sunionstore(byte[] destination0, byte[][] key1) throws RedisException
destination0 - key1 - RedisExceptionIntegerReply zadd(byte[][] args) throws RedisException
args - RedisExceptionIntegerReply zcard(byte[] key0) throws RedisException
key0 - RedisExceptionIntegerReply zcount(byte[] key0, byte[] min1, byte[] max2) throws RedisException
key0 - min1 - max2 - RedisExceptionBulkReply zincrby(byte[] key0, byte[] increment1, byte[] member2) throws RedisException
key0 - increment1 - member2 - RedisExceptionIntegerReply zinterstore(byte[] destination0, byte[] numkeys1, byte[][] key2) throws RedisException
destination0 - numkeys1 - key2 - RedisExceptionMultiBulkReply zrange(byte[] key0, byte[] start1, byte[] stop2, byte[] withscores3) throws RedisException
key0 - start1 - stop2 - withscores3 - RedisExceptionMultiBulkReply zrangebyscore(byte[] key0, byte[] min1, byte[] max2, byte[][] withscores_offset_or_count4) throws RedisException
key0 - min1 - max2 - withscores3 - offset_or_count4 - RedisExceptionReply zrank(byte[] key0, byte[] member1) throws RedisException
key0 - member1 - RedisExceptionIntegerReply zrem(byte[] key0, byte[][] member1) throws RedisException
key0 - member1 - RedisExceptionIntegerReply zremrangebyrank(byte[] key0, byte[] start1, byte[] stop2) throws RedisException
key0 - start1 - stop2 - RedisExceptionIntegerReply zremrangebyscore(byte[] key0, byte[] min1, byte[] max2) throws RedisException
key0 - min1 - max2 - RedisExceptionMultiBulkReply zrevrange(byte[] key0, byte[] start1, byte[] stop2, byte[] withscores3) throws RedisException
key0 - start1 - stop2 - withscores3 - RedisExceptionMultiBulkReply zrevrangebyscore(byte[] key0, byte[] max1, byte[] min2, byte[][] withscores_offset_or_count4) throws RedisException
key0 - max1 - min2 - withscores3 - offset_or_count4 - RedisExceptionReply zrevrank(byte[] key0, byte[] member1) throws RedisException
key0 - member1 - RedisExceptionBulkReply zscore(byte[] key0, byte[] member1) throws RedisException
key0 - member1 - RedisExceptionIntegerReply zunionstore(byte[] destination0, byte[] numkeys1, byte[][] key2) throws RedisException
destination0 - numkeys1 - key2 - RedisExceptionCopyright © 2014. All rights reserved.