A B C D E F G H I J K L M N O P Q R S T U V W X Y Z _

A

append(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Append a value to a key
auth(String, Handler<AsyncResult<String>>) - Method in RedisClient
Authenticate to the server

B

bgrewriteaof(Handler<AsyncResult<String>>) - Method in RedisClient
Asynchronously rewrite the append-only file
bgsave(Handler<AsyncResult<String>>) - Method in RedisClient
Asynchronously save the dataset to disk
bitcount(String, Handler<AsyncResult<Long>>) - Method in RedisClient
Count set bits in a string
bitcountRange(String, long, long, Handler<AsyncResult<Long>>) - Method in RedisClient
Count set bits in a string
bitop(BitOperation, String, List<String>, Handler<AsyncResult<Long>>) - Method in RedisClient
Perform bitwise operations between strings
bitpos(String, int, Handler<AsyncResult<Long>>) - Method in RedisClient
Find first bit set or clear in a string
bitposFrom(String, int, int, Handler<AsyncResult<Long>>) - Method in RedisClient
Find first bit set or clear in a string
bitposRange(String, int, int, int, Handler<AsyncResult<Long>>) - Method in RedisClient
Find first bit set or clear in a string
blpop(String, int, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Remove and get the first element in a list, or block until one is available
blpopMany(List<String>, int, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Remove and get the first element in any of the lists, or block until one is available
brpop(String, int, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Remove and get the last element in a list, or block until one is available
brpoplpush(String, String, int, Handler<AsyncResult<String>>) - Method in RedisClient
Pop a value from a list, push it to another list and return it; or block until one is available
brpopMany(List<String>, int, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Remove and get the last element in any of the lists, or block until one is available

C

clientGetname(Handler<AsyncResult<String>>) - Method in RedisClient
Get the current connection name
clientKill(Map<String, Object>, Handler<AsyncResult<Long>>) - Method in RedisClient
Kill the connection of a client
clientList(Handler<AsyncResult<String>>) - Method in RedisClient
Get the list of client connections
clientPause(long, Handler<AsyncResult<String>>) - Method in RedisClient
Stop processing commands from clients for some time
clientSetname(String, Handler<AsyncResult<String>>) - Method in RedisClient
Set the current connection name
close(Handler<AsyncResult<Void>>) - Method in RedisClient
Close the client - when it is fully closed the handler will be called.
clusterAddslots(List<Long>, Handler<AsyncResult<Void>>) - Method in RedisClient
Assign new hash slots to receiving node.
clusterCountFailureReports(String, Handler<AsyncResult<Long>>) - Method in RedisClient
Return the number of failure reports active for a given node.
clusterCountkeysinslot(long, Handler<AsyncResult<Long>>) - Method in RedisClient
Return the number of local keys in the specified hash slot.
clusterDelslots(long, Handler<AsyncResult<Void>>) - Method in RedisClient
Set hash slots as unbound in receiving node.
clusterDelslotsMany(List<Long>, Handler<AsyncResult<Void>>) - Method in RedisClient
Set hash slots as unbound in receiving node.
clusterFailover(Handler<AsyncResult<Void>>) - Method in RedisClient
Forces a slave to perform a manual failover of its master.
clusterFailOverWithOptions(FailoverOptions, Handler<AsyncResult<Void>>) - Method in RedisClient
Forces a slave to perform a manual failover of its master.
clusterForget(String, Handler<AsyncResult<Void>>) - Method in RedisClient
Remove a node from the nodes table.
clusterGetkeysinslot(long, long, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Return local key names in the specified hash slot.
clusterInfo(Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Provides info about Redis Cluster node state.
clusterKeyslot(String, Handler<AsyncResult<Long>>) - Method in RedisClient
Returns the hash slot of the specified key.
clusterMeet(String, long, Handler<AsyncResult<Void>>) - Method in RedisClient
Force a node cluster to handshake with another node.
clusterNodes(Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Get Cluster config for the node.
clusterReplicate(String, Handler<AsyncResult<Void>>) - Method in RedisClient
Reconfigure a node as a slave of the specified master node.
clusterReset(Handler<AsyncResult<Void>>) - Method in RedisClient
Reset a Redis Cluster node.
clusterResetWithOptions(ResetOptions, Handler<AsyncResult<Void>>) - Method in RedisClient
Reset a Redis Cluster node.
clusterSaveconfig(Handler<AsyncResult<Void>>) - Method in RedisClient
Forces the node to save cluster state on disk.
clusterSetConfigEpoch(long, Handler<AsyncResult<Void>>) - Method in RedisClient
Set the configuration epoch in a new node.
clusterSetslot(long, SlotCmd, Handler<AsyncResult<Void>>) - Method in RedisClient
Bind an hash slot to a specific node.
clusterSetslotWithNode(long, SlotCmd, String, Handler<AsyncResult<Void>>) - Method in RedisClient
Bind an hash slot to a specific node.
clusterSlaves(String, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
List slave nodes of the specified master node.
clusterSlots(Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Get array of Cluster slot to node mappings
command(Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Get array of Redis command details
commandCount(Handler<AsyncResult<Long>>) - Method in RedisClient
Get total number of Redis commands
commandGetkeys(Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Extract keys given a full Redis command
commandInfo(List<String>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Get array of specific Redis command details
configGet(String, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Get the value of a configuration parameter
configResetstat(Handler<AsyncResult<String>>) - Method in RedisClient
Reset the stats returned by INFO
configRewrite(Handler<AsyncResult<String>>) - Method in RedisClient
Rewrite the configuration file with the in memory configuration
configSet(String, String, Handler<AsyncResult<String>>) - Method in RedisClient
Set a configuration parameter to the given value
create(Vertx, Map<String, Object>) - Method in RedisClient

D

dbsize(Handler<AsyncResult<Long>>) - Method in RedisClient
Return the number of keys in the selected database
debugObject(String, Handler<AsyncResult<String>>) - Method in RedisClient
Get debugging information about a key
debugSegfault(Handler<AsyncResult<String>>) - Method in RedisClient
Make the server crash
decr(String, Handler<AsyncResult<Long>>) - Method in RedisClient
Decrement the integer value of a key by one
decrby(String, long, Handler<AsyncResult<Long>>) - Method in RedisClient
Decrement the integer value of a key by the given number
del(String, Handler<AsyncResult<Long>>) - Method in RedisClient
Delete a key
delMany(List<String>, Handler<AsyncResult<Long>>) - Method in RedisClient
Delete many keys
discard(Handler<AsyncResult<String>>) - Method in RedisClient
Discard all commands issued after MULTI
dump(String, Handler<AsyncResult<String>>) - Method in RedisClient
Return a serialized version of the value stored at the specified key.

E

echo(String, Handler<AsyncResult<String>>) - Method in RedisClient
Echo the given string
eval(String, List<String>, List<String>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Execute a Lua script server side.
evalsha(String, List<String>, List<String>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Execute a Lua script server side.
exec(Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Execute all commands issued after MULTI
exists(String, Handler<AsyncResult<Long>>) - Method in RedisClient
Determine if a key exists
expire(String, int, Handler<AsyncResult<Long>>) - Method in RedisClient
Set a key's time to live in seconds
expireat(String, long, Handler<AsyncResult<Long>>) - Method in RedisClient
Set the expiration for a key as a UNIX timestamp

F

flushall(Handler<AsyncResult<String>>) - Method in RedisClient
Remove all keys from all databases
flushdb(Handler<AsyncResult<String>>) - Method in RedisClient
Remove all keys from the current database

G

get(String, Handler<AsyncResult<String>>) - Method in RedisClient
Get the value of a key
getBinary(String, Handler<AsyncResult<String>>) - Method in RedisClient
Get the value of a key - without decoding as utf-8
getbit(String, long, Handler<AsyncResult<Long>>) - Method in RedisClient
Returns the bit value at offset in the string value stored at key
getDelegate() - Method in RedisClient
getrange(String, long, long, Handler<AsyncResult<String>>) - Method in RedisClient
Get a substring of the string stored at a key
getset(String, String, Handler<AsyncResult<String>>) - Method in RedisClient
Set the string value of a key and return its old value

H

hdel(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Delete one or more hash fields
hdelMany(String, List<String>, Handler<AsyncResult<Long>>) - Method in RedisClient
Delete one or more hash fields
hexists(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Determine if a hash field exists
hget(String, String, Handler<AsyncResult<String>>) - Method in RedisClient
Get the value of a hash field
hgetall(String, Handler<AsyncResult<Map<String, Object>>>) - Method in RedisClient
Get all the fields and values in a hash
hincrby(String, String, long, Handler<AsyncResult<Long>>) - Method in RedisClient
Increment the integer value of a hash field by the given number
hincrbyfloat(String, String, double, Handler<AsyncResult<String>>) - Method in RedisClient
Increment the float value of a hash field by the given amount
hkeys(String, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Get all the fields in a hash
hlen(String, Handler<AsyncResult<Long>>) - Method in RedisClient
Get the number of fields in a hash
hmget(String, List<String>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Get the values of all the given hash fields
hmset(String, Map<String, Object>, Handler<AsyncResult<String>>) - Method in RedisClient
Set multiple hash fields to multiple values
hscan(String, String, Map<String, Object>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Incrementally iterate hash fields and associated values
hset(String, String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Set the string value of a hash field
hsetnx(String, String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Set the value of a hash field, only if the field does not exist
hvals(String, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Get all the values in a hash

I

incr(String, Handler<AsyncResult<Long>>) - Method in RedisClient
Increment the integer value of a key by one
incrby(String, long, Handler<AsyncResult<Long>>) - Method in RedisClient
Increment the integer value of a key by the given amount
incrbyfloat(String, double, Handler<AsyncResult<String>>) - Method in RedisClient
Increment the float value of a key by the given amount
info(Handler<AsyncResult<Map<String, Object>>>) - Method in RedisClient
Get information and statistics about the server
infoSection(String, Handler<AsyncResult<Map<String, Object>>>) - Method in RedisClient
Get information and statistics about the server

J

K

keys(String, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Find all keys matching the given pattern

L

lastsave(Handler<AsyncResult<Long>>) - Method in RedisClient
Get the UNIX time stamp of the last successful save to disk
lindex(String, int, Handler<AsyncResult<String>>) - Method in RedisClient
Get an element from a list by its index
linsert(String, InsertOptions, String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Insert an element before or after another element in a list
llen(String, Handler<AsyncResult<Long>>) - Method in RedisClient
Get the length of a list
lpop(String, Handler<AsyncResult<String>>) - Method in RedisClient
Remove and get the first element in a list
lpush(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Prepend one value to a list
lpushMany(String, List<String>, Handler<AsyncResult<Long>>) - Method in RedisClient
Prepend one or multiple values to a list
lpushx(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Prepend a value to a list, only if the list exists
lrange(String, long, long, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Get a range of elements from a list
lrem(String, long, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Remove elements from a list
lset(String, long, String, Handler<AsyncResult<String>>) - Method in RedisClient
Set the value of an element in a list by its index
ltrim(String, long, long, Handler<AsyncResult<String>>) - Method in RedisClient
Trim a list to the specified range

M

mget(String, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Get the value of the given key
mgetMany(List<String>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Get the values of all the given keys
migrate(String, int, String, int, long, Map<String, Object>, Handler<AsyncResult<String>>) - Method in RedisClient
Atomically transfer a key from a Redis instance to another one.
monitor(Handler<AsyncResult<Void>>) - Method in RedisClient
Listen for all requests received by the server in real time
move(String, int, Handler<AsyncResult<Long>>) - Method in RedisClient
Move a key to another database
mset(Map<String, Object>, Handler<AsyncResult<String>>) - Method in RedisClient
Set multiple keys to multiple values
msetnx(Map<String, Object>, Handler<AsyncResult<Long>>) - Method in RedisClient
Set multiple keys to multiple values, only if none of the keys exist
multi(Handler<AsyncResult<String>>) - Method in RedisClient
Mark the start of a transaction block

N

O

object(String, ObjectCmd, Handler<AsyncResult<Void>>) - Method in RedisClient
Inspect the internals of Redis objects

P

persist(String, Handler<AsyncResult<Long>>) - Method in RedisClient
Remove the expiration from a key
pexpire(String, long, Handler<AsyncResult<Long>>) - Method in RedisClient
Set a key's time to live in milliseconds
pexpireat(String, long, Handler<AsyncResult<Long>>) - Method in RedisClient
Set the expiration for a key as a UNIX timestamp specified in milliseconds
pfadd(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Adds the specified element to the specified HyperLogLog.
pfaddMany(String, List<String>, Handler<AsyncResult<Long>>) - Method in RedisClient
Adds the specified elements to the specified HyperLogLog.
pfcount(String, Handler<AsyncResult<Long>>) - Method in RedisClient
Return the approximated cardinality of the set observed by the HyperLogLog at key.
pfcountMany(List<String>, Handler<AsyncResult<Long>>) - Method in RedisClient
Return the approximated cardinality of the set(s) observed by the HyperLogLog at key(s).
pfmerge(String, List<String>, Handler<AsyncResult<String>>) - Method in RedisClient
Merge N different HyperLogLogs into a single one.
ping(Handler<AsyncResult<String>>) - Method in RedisClient
Ping the server
psetex(String, long, String, Handler<AsyncResult<Void>>) - Method in RedisClient
Set the value and expiration in milliseconds of a key
psubscribe(String, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Listen for messages published to channels matching the given pattern
psubscribeMany(List<String>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Listen for messages published to channels matching the given patterns
pttl(String, Handler<AsyncResult<Long>>) - Method in RedisClient
Get the time to live for a key in milliseconds
publish(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Post a message to a channel
pubsubChannels(String, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Lists the currently active channels - only those matching the pattern
pubsubNumpat(Handler<AsyncResult<Long>>) - Method in RedisClient
Returns the number of subscriptions to patterns (that are performed using the PSUBSCRIBE command)
pubsubNumsub(List<String>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Returns the number of subscribers (not counting clients subscribed to patterns) for the specified channels
punsubscribe(List<String>, Handler<AsyncResult<Void>>) - Method in RedisClient
Stop listening for messages posted to channels matching the given patterns

Q

R

randomkey(Handler<AsyncResult<String>>) - Method in RedisClient
Return a random key from the keyspace
RedisClient - Class in io.vertx.groovy.redis
RedisClient(Object) - Constructor in RedisClient
rename(String, String, Handler<AsyncResult<String>>) - Method in RedisClient
Rename a key
renamenx(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Rename a key, only if the new key does not exist
restore(String, long, String, Handler<AsyncResult<String>>) - Method in RedisClient
Create a key using the provided serialized value, previously obtained using DUMP.
role(Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Return the role of the instance in the context of replication
rpop(String, Handler<AsyncResult<String>>) - Method in RedisClient
Remove and get the last element in a list
rpoplpush(String, String, Handler<AsyncResult<String>>) - Method in RedisClient
Remove the last element in a list, append it to another list and return it
rpush(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Append one or multiple values to a list
rpushMany(String, List<String>, Handler<AsyncResult<Long>>) - Method in RedisClient
Append one or multiple values to a list
rpushx(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Append a value to a list, only if the list exists

S

sadd(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Add a member to a set
saddMany(String, List<String>, Handler<AsyncResult<Long>>) - Method in RedisClient
Add one or more members to a set
save(Handler<AsyncResult<String>>) - Method in RedisClient
Synchronously save the dataset to disk
scan(String, Map<String, Object>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Incrementally iterate the keys space
scard(String, Handler<AsyncResult<Long>>) - Method in RedisClient
Get the number of members in a set
scriptExists(String, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Check existence of script in the script cache.
scriptExistsMany(List<String>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Check existence of scripts in the script cache.
scriptFlush(Handler<AsyncResult<String>>) - Method in RedisClient
Remove all the scripts from the script cache.
scriptKill(Handler<AsyncResult<String>>) - Method in RedisClient
Kill the script currently in execution.
scriptLoad(String, Handler<AsyncResult<String>>) - Method in RedisClient
Load the specified Lua script into the script cache.
sdiff(String, List<String>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Subtract multiple sets
sdiffstore(String, String, List<String>, Handler<AsyncResult<Long>>) - Method in RedisClient
Subtract multiple sets and store the resulting set in a key
select(int, Handler<AsyncResult<String>>) - Method in RedisClient
Change the selected database for the current connection
set(String, String, Handler<AsyncResult<Void>>) - Method in RedisClient
Set the string value of a key
setBinary(String, String, Handler<AsyncResult<Void>>) - Method in RedisClient
Set the binary string value of a key - without encoding as utf-8
setbit(String, long, int, Handler<AsyncResult<Long>>) - Method in RedisClient
Sets or clears the bit at offset in the string value stored at key
setex(String, long, String, Handler<AsyncResult<String>>) - Method in RedisClient
Set the value and expiration of a key
setnx(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Set the value of a key, only if the key does not exist
setrange(String, int, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Overwrite part of a string at key starting at the specified offset
setWithOptions(String, String, Map<String, Object>, Handler<AsyncResult<Void>>) - Method in RedisClient
Set the string value of a key
sinter(List<String>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Intersect multiple sets
sinterstore(String, List<String>, Handler<AsyncResult<Long>>) - Method in RedisClient
Intersect multiple sets and store the resulting set in a key
sismember(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Determine if a given value is a member of a set
slaveof(String, int, Handler<AsyncResult<String>>) - Method in RedisClient
Make the server a slave of another instance
slaveofNoone(Handler<AsyncResult<String>>) - Method in RedisClient
Make this server a master
slowlogGet(int, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Read the Redis slow queries log
slowlogLen(Handler<AsyncResult<Long>>) - Method in RedisClient
Get the length of the Redis slow queries log
slowlogReset(Handler<AsyncResult<Void>>) - Method in RedisClient
Reset the Redis slow queries log
smembers(String, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Get all the members in a set
smove(String, String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Move a member from one set to another
sort(String, Map<String, Object>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Sort the elements in a list, set or sorted set
spop(String, Handler<AsyncResult<String>>) - Method in RedisClient
Remove and return a random member from a set
spopMany(String, int, Handler<AsyncResult<String>>) - Method in RedisClient
Remove and return random members from a set
srandmember(String, Handler<AsyncResult<String>>) - Method in RedisClient
Get one or multiple random members from a set
srandmemberCount(String, int, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Get one or multiple random members from a set
srem(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Remove one member from a set
sremMany(String, List<String>, Handler<AsyncResult<Long>>) - Method in RedisClient
Remove one or more members from a set
sscan(String, String, Map<String, Object>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Incrementally iterate Set elements
strlen(String, Handler<AsyncResult<Long>>) - Method in RedisClient
Get the length of the value stored in a key
subscribe(String, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Listen for messages published to the given channels
subscribeMany(List<String>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Listen for messages published to the given channels
sunion(List<String>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Add multiple sets
sunionstore(String, List<String>, Handler<AsyncResult<Long>>) - Method in RedisClient
Add multiple sets and store the resulting set in a key
sync(Handler<AsyncResult<Void>>) - Method in RedisClient
Internal command used for replication

T

time(Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Return the current server time
ttl(String, Handler<AsyncResult<Long>>) - Method in RedisClient
Get the time to live for a key
type(String, Handler<AsyncResult<String>>) - Method in RedisClient
Determine the type stored at key

U

unsubscribe(List<String>, Handler<AsyncResult<Void>>) - Method in RedisClient
Stop listening for messages posted to the given channels
unwatch(Handler<AsyncResult<String>>) - Method in RedisClient
Forget about all watched keys

V

W

wait(long, long, Handler<AsyncResult<String>>) - Method in RedisClient
Wait for the synchronous replication of all the write commands sent in the context of the current connection.
watch(String, Handler<AsyncResult<String>>) - Method in RedisClient
Watch the given keys to determine execution of the MULTI/EXEC block
watchMany(List<String>, Handler<AsyncResult<String>>) - Method in RedisClient
Watch the given keys to determine execution of the MULTI/EXEC block

X

Y

Z

zadd(String, double, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Add one or more members to a sorted set, or update its score if it already exists
zaddMany(String, Map<String, Double>, Handler<AsyncResult<Long>>) - Method in RedisClient
Add one or more members to a sorted set, or update its score if it already exists
zcard(String, Handler<AsyncResult<Long>>) - Method in RedisClient
Get the number of members in a sorted set
zcount(String, double, double, Handler<AsyncResult<Long>>) - Method in RedisClient
Count the members in a sorted set with scores within the given values
zincrby(String, double, String, Handler<AsyncResult<String>>) - Method in RedisClient
Increment the score of a member in a sorted set
zinterstore(String, List<String>, AggregateOptions, Handler<AsyncResult<Long>>) - Method in RedisClient
Intersect multiple sorted sets and store the resulting sorted set in a new key
zinterstoreWeighed(String, Map<String, Double>, AggregateOptions, Handler<AsyncResult<Long>>) - Method in RedisClient
Intersect multiple sorted sets and store the resulting sorted set in a new key using weights for scoring
zlexcount(String, String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Count the number of members in a sorted set between a given lexicographical range
zrange(String, long, long, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Return a range of members in a sorted set, by index
zrangebylex(String, String, String, Map<String, Object>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Return a range of members in a sorted set, by lexicographical range
zrangebyscore(String, String, String, Map<String, Object>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Return a range of members in a sorted set, by score
zrangeWithOptions(String, long, long, RangeOptions, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Return a range of members in a sorted set, by index
zrank(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Determine the index of a member in a sorted set
zrem(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Remove one member from a sorted set
zremMany(String, List<String>, Handler<AsyncResult<Long>>) - Method in RedisClient
Remove one or more members from a sorted set
zremrangebylex(String, String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Remove all members in a sorted set between the given lexicographical range
zremrangebyrank(String, long, long, Handler<AsyncResult<Long>>) - Method in RedisClient
Remove all members in a sorted set within the given indexes
zremrangebyscore(String, String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Remove all members in a sorted set within the given scores
zrevrange(String, long, long, RangeOptions, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Return a range of members in a sorted set, by index, with scores ordered from high to low
zrevrangebylex(String, String, String, Map<String, Object>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Return a range of members in a sorted set, by score, between the given lexicographical range with scores ordered from high to low
zrevrangebyscore(String, String, String, Map<String, Object>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Return a range of members in a sorted set, by score, with scores ordered from high to low
zrevrank(String, String, Handler<AsyncResult<Long>>) - Method in RedisClient
Determine the index of a member in a sorted set, with scores ordered from high to low
zscan(String, String, Map<String, Object>, Handler<AsyncResult<List<Object>>>) - Method in RedisClient
Incrementally iterate sorted sets elements and associated scores
zscore(String, String, Handler<AsyncResult<String>>) - Method in RedisClient
Get the score associated with the given member in a sorted set
zunionstore(String, List<String>, AggregateOptions, Handler<AsyncResult<Long>>) - Method in RedisClient
Add multiple sorted sets and store the resulting sorted set in a new key
zunionstoreWeighed(String, Map<String, Double>, AggregateOptions, Handler<AsyncResult<Long>>) - Method in RedisClient
Add multiple sorted sets using weights, and store the resulting sorted set in a new key

_

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z _