- 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
-
- 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
- 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
- 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