- batch(List<Request>, Handler<AsyncResult<List<Response>>>) - Method in interface io.vertx.redis.client.Redis
-
- BGREWRITEAOF - Static variable in interface io.vertx.redis.client.Command
-
- bgrewriteaof(Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- bgrewriteaof(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Asynchronously rewrite the append-only file
- bgrewriteaof(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Asynchronously rewrite the append-only file
- BGSAVE - Static variable in interface io.vertx.redis.client.Command
-
- bgsave(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- bgsave(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Asynchronously save the dataset to disk
- bgsave(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Asynchronously save the dataset to disk
- BITCOUNT - Static variable in interface io.vertx.redis.client.Command
-
- bitcount(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- bitcount(String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Count set bits in a string
- bitcount(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Count set bits in a string
- bitcountRange(String, long, long, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Count set bits in a string
- bitcountRange(String, long, long, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Count set bits in a string
- BITFIELD - Static variable in interface io.vertx.redis.client.Command
-
- bitfield(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- bitfield(String, BitFieldOptions, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Perform arbitrary bitfield integer operations on strings.
- BitFieldGetCommand - Class in io.vertx.redis.op
-
- BitFieldGetCommand() - Constructor for class io.vertx.redis.op.BitFieldGetCommand
-
- BitFieldGetCommand(BitFieldGetCommand) - Constructor for class io.vertx.redis.op.BitFieldGetCommand
-
- BitFieldGetCommand(JsonObject) - Constructor for class io.vertx.redis.op.BitFieldGetCommand
-
- BitFieldIncrbyCommand - Class in io.vertx.redis.op
-
- BitFieldIncrbyCommand() - Constructor for class io.vertx.redis.op.BitFieldIncrbyCommand
-
- BitFieldIncrbyCommand(BitFieldIncrbyCommand) - Constructor for class io.vertx.redis.op.BitFieldIncrbyCommand
-
- BitFieldIncrbyCommand(JsonObject) - Constructor for class io.vertx.redis.op.BitFieldIncrbyCommand
-
- BitFieldOptions - Class in io.vertx.redis.op
-
- BitFieldOptions() - Constructor for class io.vertx.redis.op.BitFieldOptions
-
- BitFieldOptions(BitFieldOptions) - Constructor for class io.vertx.redis.op.BitFieldOptions
-
- BitFieldOptions(JsonObject) - Constructor for class io.vertx.redis.op.BitFieldOptions
-
- BitFieldOverflowOptions - Enum in io.vertx.redis.op
-
- BitFieldSetCommand - Class in io.vertx.redis.op
-
- BitFieldSetCommand() - Constructor for class io.vertx.redis.op.BitFieldSetCommand
-
- BitFieldSetCommand(BitFieldSetCommand) - Constructor for class io.vertx.redis.op.BitFieldSetCommand
-
- BitFieldSetCommand(JsonObject) - Constructor for class io.vertx.redis.op.BitFieldSetCommand
-
- bitfieldWithOverflow(String, BitFieldOptions, BitFieldOverflowOptions, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Perform arbitrary bitfield integer operations on strings.
- BITOP - Static variable in interface io.vertx.redis.client.Command
-
- bitop(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- bitop(BitOperation, String, List<String>, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Perform bitwise operations between strings
- bitop(BitOperation, String, List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Perform bitwise operations between strings
- BitOperation - Enum in io.vertx.redis.op
-
- BITPOS - Static variable in interface io.vertx.redis.client.Command
-
- bitpos(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- bitpos(String, int, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Find first bit set or clear in a string
- bitpos(String, int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Find first bit set or clear in a string
- bitposFrom(String, int, int, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Find first bit set or clear in a string
See also bitposRange() method, which takes start, and stop offset.
- bitposFrom(String, int, int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Find first bit set or clear in a string
- bitposRange(String, int, int, int, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Find first bit set or clear in a string
Note: when both start, and stop offsets are specified,
behaviour is slightly different than if only start is specified
- bitposRange(String, int, int, int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Find first bit set or clear in a string
- BLPOP - Static variable in interface io.vertx.redis.client.Command
-
- blpop(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- blpop(String, int, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Remove and get the first element in a list, or block until one is available
- blpop(String, int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove and get the first element in a list, or block until one is available
- blpopMany(List<String>, int, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Remove and get the first element in any of the lists, or block until one is available
- blpopMany(List<String>, int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove and get the first element in any of the lists, or block until one is available
- BRPOP - Static variable in interface io.vertx.redis.client.Command
-
- brpop(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- brpop(String, int, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Remove and get the last element in a list, or block until one is available
- brpop(String, int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove and get the last element in a list, or block until one is available
- BRPOPLPUSH - Static variable in interface io.vertx.redis.client.Command
-
- brpoplpush(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- brpoplpush(String, String, int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Pop a value from a list, push it to another list and return it; or block until one is available
- brpoplpush(String, String, int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
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<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Remove and get the last element in any of the lists, or block until one is available
- brpopMany(List<String>, int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove and get the last element in any of the lists, or block until one is available
- BZPOPMAX - Static variable in interface io.vertx.redis.client.Command
-
- bzpopmax(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- BZPOPMIN - Static variable in interface io.vertx.redis.client.Command
-
- bzpopmin(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- ckquorum(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.sentinel.RedisSentinel
-
Check if the current Sentinel configuration is able to reach the quorum needed to failover a master,
and the majority needed to authorize the failover.
- CLIENT - Static variable in interface io.vertx.redis.client.Command
-
- client(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- clientGetname(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Get the current connection name
- clientGetname(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get the current connection name
- clientKill(KillFilter, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Kill the connection of a client
- clientKill(KillFilter, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Kill the connection of a client
- clientList(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Get the list of client connections
- clientList(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get the list of client connections
- clientPause(long, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Stop processing commands from clients for some time
- clientPause(long, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Stop processing commands from clients for some time
- clientReply(ClientReplyOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Instruct the server whether to reply to commands.
- ClientReplyOptions - Enum in io.vertx.redis.op
-
- clientSetname(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Set the current connection name
- clientSetname(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set the current connection name
- close() - Method in interface io.vertx.redis.client.Redis
-
- close(Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Close the client - when it is fully closed the handler will be called.
- close(Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisTransaction
-
Close the client - when it is fully closed the handler will be called.
- close(Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.sentinel.RedisSentinel
-
Close the client - when it is fully closed the handler will be called.
- CLUSTER - Static variable in interface io.vertx.redis.client.Command
-
- cluster(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- clusterAddslots(List<Long>, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Assign new hash slots to receiving node.
- clusterAddslots(List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Assign new hash slots to receiving node.
- clusterCountFailureReports(String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Return the number of failure reports active for a given node.
- clusterCountFailureReports(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return the number of failure reports active for a given node.
- clusterCountkeysinslot(long, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Return the number of local keys in the specified hash slot.
- clusterCountkeysinslot(long, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return the number of local keys in the specified hash slot.
- clusterDelslots(long, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Set hash slots as unbound in receiving node.
- clusterDelslots(long, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set hash slots as unbound in receiving node.
- clusterDelslotsMany(List<Long>, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Set hash slots as unbound in receiving node.
- clusterDelslotsMany(List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set hash slots as unbound in receiving node.
- clusterFailover(Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Forces a slave to perform a manual failover of its master.
- clusterFailover(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Forces a slave to perform a manual failover of its master.
- clusterFailOverWithOptions(FailoverOptions, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Forces a slave to perform a manual failover of its master.
- clusterFailOverWithOptions(FailoverOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Forces a slave to perform a manual failover of its master.
- clusterForget(String, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Remove a node from the nodes table.
- clusterForget(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove a node from the nodes table.
- clusterGetkeysinslot(long, long, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Return local key names in the specified hash slot.
- clusterGetkeysinslot(long, long, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return local key names in the specified hash slot.
- clusterInfo(Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Provides info about Redis Cluster node state.
- clusterInfo(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Provides info about Redis Cluster node state.
- clusterKeyslot(String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Returns the hash slot of the specified key.
- clusterKeyslot(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Returns the hash slot of the specified key.
- clusterMeet(String, long, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Force a node cluster to handshake with another node.
- clusterMeet(String, long, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Force a node cluster to handshake with another node.
- clusterNodes(Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Get Cluster config for the node.
- clusterNodes(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get Cluster config for the node.
- clusterReplicate(String, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Reconfigure a node as a slave of the specified master node.
- clusterReplicate(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Reconfigure a node as a slave of the specified master node.
- clusterReset(Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Reset a Redis Cluster node.
- clusterReset(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Reset a Redis Cluster node.
- clusterResetWithOptions(ResetOptions, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Reset a Redis Cluster node.
- clusterResetWithOptions(ResetOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Reset a Redis Cluster node.
- clusterSaveconfig(Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Forces the node to save cluster state on disk.
- clusterSaveconfig(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Forces the node to save cluster state on disk.
- clusterSetConfigEpoch(long, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Set the configuration epoch in a new node.
- clusterSetConfigEpoch(long, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set the configuration epoch in a new node.
- clusterSetslot(long, SlotCmd, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Bind an hash slot to a specific node.
- clusterSetslot(long, SlotCmd, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Bind an hash slot to a specific node.
- clusterSetslotWithNode(long, SlotCmd, String, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Bind an hash slot to a specific node.
- clusterSetslotWithNode(long, SlotCmd, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Bind an hash slot to a specific node.
- clusterSlaves(String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
List slave nodes of the specified master node.
- clusterSlaves(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
List slave nodes of the specified master node.
- clusterSlots(Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Get array of Cluster slot to node mappings
- clusterSlots(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get array of Cluster slot to node mappings
- cmd(Command) - Static method in interface io.vertx.redis.client.Request
-
- Command - Interface in io.vertx.redis.client
-
Auto generated API Commands to interact with REDIS.
- COMMAND - Static variable in interface io.vertx.redis.client.Command
-
- command(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- command() - Method in interface io.vertx.redis.client.Request
-
Get the Command that is to be used by this request.
- command(Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Get array of Redis command details
- command(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get array of Redis command details
- commandCount(Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Get total number of Redis commands
- commandCount(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get total number of Redis commands
- commandGetkeys(Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Extract keys given a full Redis command
- commandGetkeys(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Extract keys given a full Redis command
- commandInfo(List<String>, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Get array of specific Redis command details
- commandInfo(List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get array of specific Redis command details
- CONFIG - Static variable in interface io.vertx.redis.client.Command
-
- config(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- configGet(String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Get the value of a configuration parameter
- configGet(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get the value of a configuration parameter
- configResetstat(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Reset the stats returned by INFO
- configResetstat(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Reset the stats returned by INFO
- configRewrite(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Rewrite the configuration file with the in memory configuration
- configRewrite(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Rewrite the configuration file with the in memory configuration
- configSet(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Set a configuration parameter to the given value
- configSet(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set a configuration parameter to the given value
- connect(Handler<AsyncResult<Redis>>) - Method in interface io.vertx.redis.client.Redis
-
Connects to the redis server.
- create(String, int, int, int, int, boolean, boolean) - Static method in interface io.vertx.redis.client.Command
-
Creates a Redis Command from METADATA.
- create(Vertx) - Static method in interface io.vertx.redis.RedisClient
-
- create(Vertx, JsonObject) - Static method in interface io.vertx.redis.RedisClient
-
- create(Vertx, RedisOptions) - Static method in interface io.vertx.redis.RedisClient
-
- create(String) - Static method in interface io.vertx.redis.Script
-
- create(String, String) - Static method in interface io.vertx.redis.Script
-
- create(Vertx) - Static method in interface io.vertx.redis.sentinel.RedisSentinel
-
- create(Vertx, JsonObject) - Static method in interface io.vertx.redis.sentinel.RedisSentinel
-
- create(Vertx, RedisOptions) - Static method in interface io.vertx.redis.sentinel.RedisSentinel
-
- createClient(Vertx, SocketAddress) - Static method in interface io.vertx.redis.client.Redis
-
Connect to redis, the
onConnect
will get the
Redis
instance.
- createClient(Vertx, RedisOptions) - Static method in interface io.vertx.redis.client.Redis
-
Connect to redis, the
onConnect
will get the
Redis
instance.
- GEOADD - Static variable in interface io.vertx.redis.client.Command
-
- geoadd(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- geoadd(String, double, double, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Add one or more geospatial items in the geospatial index represented using a sorted set.
- geoadd(String, double, double, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Add one or more geospatial items in the geospatial index represented using a sorted set.
- geoaddMany(String, List<GeoMember>, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Add one or more geospatial items in the geospatial index represented using a sorted set.
- geoaddMany(String, List<GeoMember>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Add one or more geospatial items in the geospatial index represented using a sorted set.
- GEODIST - Static variable in interface io.vertx.redis.client.Command
-
- geodist(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- geodist(String, String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Return the distance between two members in the geospatial index represented by the sorted set.
- geodist(String, String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return the distance between two members in the geospatial index represented by the sorted set.
- geodistWithUnit(String, String, String, GeoUnit, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Return the distance between two members in the geospatial index represented by the sorted set.
- geodistWithUnit(String, String, String, GeoUnit, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return the distance between two members in the geospatial index represented by the sorted set.
- GEOHASH - Static variable in interface io.vertx.redis.client.Command
-
- geohash(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- geohash(String, String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Return valid Geohash strings representing the position of one or more elements in a sorted set value representing
a geospatial index (where elements were added using GEOADD).
- geohash(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return valid Geohash strings representing the position of one or more elements in a sorted set value representing
a geospatial index (where elements were added using GEOADD).
- geohashMany(String, List<String>, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Return valid Geohash strings representing the position of one or more elements in a sorted set value representing
a geospatial index (where elements were added using GEOADD).
- geohashMany(String, List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return valid Geohash strings representing the position of one or more elements in a sorted set value representing
a geospatial index (where elements were added using GEOADD).
- GeoMember - Class in io.vertx.redis.op
-
- GeoMember() - Constructor for class io.vertx.redis.op.GeoMember
-
- GeoMember(GeoMember) - Constructor for class io.vertx.redis.op.GeoMember
-
- GeoMember(JsonObject) - Constructor for class io.vertx.redis.op.GeoMember
-
- GEOPOS - Static variable in interface io.vertx.redis.client.Command
-
- geopos(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- geopos(String, String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Return the positions (longitude,latitude) of all the specified members of the geospatial index represented by the
sorted set at key.
- geopos(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return the positions (longitude,latitude) of all the specified members of the geospatial index represented by the
sorted set at key.
- geoposMany(String, List<String>, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Return the positions (longitude,latitude) of all the specified members of the geospatial index represented by the
sorted set at key.
- geoposMany(String, List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return the positions (longitude,latitude) of all the specified members of the geospatial index represented by the
sorted set at key.
- GEORADIUS - Static variable in interface io.vertx.redis.client.Command
-
- georadius(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- georadius(String, double, double, double, GeoUnit, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Return the members of a sorted set populated with geospatial information using GEOADD, which are within the borders
of the area specified with the center location and the maximum distance from the center (the radius).
- georadius(String, double, double, double, GeoUnit, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return the members of a sorted set populated with geospatial information using GEOADD, which are within the borders
of the area specified with the center location and the maximum distance from the center (the radius).
- GEORADIUS_RO - Static variable in interface io.vertx.redis.client.Command
-
- GEORADIUSBYMEMBER - Static variable in interface io.vertx.redis.client.Command
-
- georadiusbymember(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- georadiusbymember(String, String, double, GeoUnit, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
This command is exactly like GEORADIUS with the sole difference that instead of taking, as the center of the area
to query, a longitude and latitude value, it takes the name of a member already existing inside the geospatial
index represented by the sorted set.
- georadiusbymember(String, String, double, GeoUnit, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
This command is exactly like GEORADIUS with the sole difference that instead of taking, as the center of the area
to query, a longitude and latitude value, it takes the name of a member already existing inside the geospatial
index represented by the sorted set.
- GEORADIUSBYMEMBER_RO - Static variable in interface io.vertx.redis.client.Command
-
- georadiusbymemberRo(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- georadiusbymemberWithOptions(String, String, double, GeoUnit, GeoRadiusOptions, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
This command is exactly like GEORADIUS with the sole difference that instead of taking, as the center of the area
to query, a longitude and latitude value, it takes the name of a member already existing inside the geospatial
index represented by the sorted set.
- georadiusbymemberWithOptions(String, String, double, GeoUnit, GeoRadiusOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
This command is exactly like GEORADIUS with the sole difference that instead of taking, as the center of the area
to query, a longitude and latitude value, it takes the name of a member already existing inside the geospatial
index represented by the sorted set.
- GeoRadiusOptions - Class in io.vertx.redis.op
-
- GeoRadiusOptions() - Constructor for class io.vertx.redis.op.GeoRadiusOptions
-
- GeoRadiusOptions(GeoRadiusOptions) - Constructor for class io.vertx.redis.op.GeoRadiusOptions
-
- GeoRadiusOptions(JsonObject) - Constructor for class io.vertx.redis.op.GeoRadiusOptions
-
- georadiusRo(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- georadiusWithOptions(String, double, double, double, GeoUnit, GeoRadiusOptions, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Return the members of a sorted set populated with geospatial information using GEOADD, which are within the borders
of the area specified with the center location and the maximum distance from the center (the radius).
- georadiusWithOptions(String, double, double, double, GeoUnit, GeoRadiusOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return the members of a sorted set populated with geospatial information using GEOADD, which are within the borders
of the area specified with the center location and the maximum distance from the center (the radius).
- GeoUnit - Enum in io.vertx.redis.op
-
GeoUnit represents a geo spatial unit it covers both the metric and imperial systems.
- GET - Static variable in interface io.vertx.redis.client.Command
-
- get(String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- get(int) - Method in interface io.vertx.redis.client.Response
-
Get this multi response value at a numerical index.
- get(String) - Method in interface io.vertx.redis.client.Response
-
Get this multi response value at a string key.
- get(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Get the value of a key
- get(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get the value of a key
- getAddress() - Method in class io.vertx.redis.RedisOptions
-
Get the default `PUB/SUB` eventbus address prefix, default `io.vertx.redis`.
- getArity() - Method in interface io.vertx.redis.client.Command
-
- getAuth() - Method in class io.vertx.redis.RedisOptions
-
Get the password for authentication at connection time.
- getBinary(String, Handler<AsyncResult<Buffer>>) - Method in interface io.vertx.redis.RedisClient
-
Get the value of a key - without decoding as utf-8
- getBinary(String, Handler<AsyncResult<Buffer>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get the value of a key - without decoding as utf-8
- GETBIT - Static variable in interface io.vertx.redis.client.Command
-
- getbit(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- getbit(String, long, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Returns the bit value at offset in the string value stored at key
- getbit(String, long, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Returns the bit value at offset in the string value stored at key
- getBytes() - Method in interface io.vertx.redis.client.Command
-
- getDomainSocketAddress() - Method in class io.vertx.redis.RedisOptions
-
Get the domain socket address for the Redis server.
- getEncoding() - Method in class io.vertx.redis.RedisOptions
-
Return the character encoding for Strings, default `UTF-8`.
- getEndpoint() - Method in class io.vertx.redis.client.RedisOptions
-
Gets the redis endpoint to use
- getEndpoints() - Method in class io.vertx.redis.client.RedisOptions
-
Gets the list of redis endpoints to use (mostly used while connecting to a cluster)
- getFirstKey() - Method in interface io.vertx.redis.client.Command
-
- getGet() - Method in class io.vertx.redis.op.BitFieldOptions
-
- getHost() - Method in class io.vertx.redis.RedisOptions
-
Get the host name for the Redis server, default `localhost`.
- getIncrby() - Method in class io.vertx.redis.op.BitFieldOptions
-
- getIncrement() - Method in class io.vertx.redis.op.BitFieldIncrbyCommand
-
- getInterval() - Method in interface io.vertx.redis.client.Command
-
- getKeys() - Method in interface io.vertx.redis.client.Response
-
Get this multi response keys from a hash.
- getLastKey() - Method in interface io.vertx.redis.client.Command
-
- getMasterAddrByName(String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.sentinel.RedisSentinel
-
Return the ip and port number of the master with that name.
- getMasterName() - Method in class io.vertx.redis.client.RedisOptions
-
Get the master name (only considered in HA mode).
- getMasterName() - Method in class io.vertx.redis.RedisOptions
-
Get name of Redis master.
- getMaxNestedArrays() - Method in class io.vertx.redis.client.RedisOptions
-
Tune how much nested arrays are allowed on a redis response.
- getMaxWaitingHandlers() - Method in class io.vertx.redis.client.RedisOptions
-
The client will always work on pipeline mode, this means that messages can start queueing.
- getNetClientOptions() - Method in class io.vertx.redis.client.RedisOptions
-
Get the net client options used to connect to the server.
- getOffset() - Method in class io.vertx.redis.op.BitFieldGetCommand
-
- getOffset() - Method in class io.vertx.redis.op.BitFieldIncrbyCommand
-
- getOffset() - Method in class io.vertx.redis.op.BitFieldSetCommand
-
- getPassword() - Method in class io.vertx.redis.client.RedisOptions
-
Get the provided password to be used when establishing a connection to the server.
- getPort() - Method in class io.vertx.redis.RedisOptions
-
Get the tcp port where the Redis server is listening, default 6379.
- GETRANGE - Static variable in interface io.vertx.redis.client.Command
-
- getrange(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- getrange(String, long, long, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Get a substring of the string stored at a key
- getrange(String, long, long, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get a substring of the string stored at a key
- getRole() - Method in class io.vertx.redis.client.RedisOptions
-
Get the role name (only considered in HA mode).
- getScript() - Method in interface io.vertx.redis.Script
-
- getSelect() - Method in class io.vertx.redis.client.RedisOptions
-
Get the provided database to be selected when establishing a connection to the server.
- getSelect() - Method in class io.vertx.redis.RedisOptions
-
Get the database to select at connection time.
- getSentinels() - Method in class io.vertx.redis.RedisOptions
-
Get list of Sentinels.
- GETSET - Static variable in interface io.vertx.redis.client.Command
-
- getset(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- getSet() - Method in class io.vertx.redis.op.BitFieldOptions
-
- getset(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Set the string value of a key and return its old value
- getset(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set the string value of a key and return its old value
- getSha1() - Method in interface io.vertx.redis.Script
-
- getType() - Method in class io.vertx.redis.client.RedisOptions
-
Get the type of client to be created.
- getType() - Method in class io.vertx.redis.op.BitFieldGetCommand
-
- getType() - Method in class io.vertx.redis.op.BitFieldIncrbyCommand
-
- getType() - Method in class io.vertx.redis.op.BitFieldSetCommand
-
- getUseSlave() - Method in class io.vertx.redis.client.RedisOptions
-
Get whether or not to use slave nodes (only considered in Cluster mode).
- getValue() - Method in class io.vertx.redis.op.BitFieldSetCommand
-
- handler(Handler<Response>) - Method in interface io.vertx.redis.client.Redis
-
Set a data handler.
- HDEL - Static variable in interface io.vertx.redis.client.Command
-
- hdel(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- hdel(String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Delete one or more hash fields
- hdel(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Delete one or more hash fields
- hdelMany(String, List<String>, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Delete one or more hash fields
- hdelMany(String, List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Delete one or more hash fields
- HEXISTS - Static variable in interface io.vertx.redis.client.Command
-
- hexists(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- hexists(String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Determine if a hash field exists
- hexists(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Determine if a hash field exists
- HGET - Static variable in interface io.vertx.redis.client.Command
-
- hget(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- hget(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Get the value of a hash field
- hget(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get the value of a hash field
- HGETALL - Static variable in interface io.vertx.redis.client.Command
-
- hgetall(String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- hgetall(String, Handler<AsyncResult<JsonObject>>) - Method in interface io.vertx.redis.RedisClient
-
Get all the fields and values in a hash
- hgetall(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get all the fields and values in a hash
- HINCRBY - Static variable in interface io.vertx.redis.client.Command
-
- hincrby(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- hincrby(String, String, long, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Increment the integer value of a hash field by the given number
- hincrby(String, String, long, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Increment the integer value of a hash field by the given number
- HINCRBYFLOAT - Static variable in interface io.vertx.redis.client.Command
-
- hincrbyfloat(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- hincrbyfloat(String, String, double, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Increment the float value of a hash field by the given amount
- hincrbyfloat(String, String, double, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Increment the float value of a hash field by the given amount
- HKEYS - Static variable in interface io.vertx.redis.client.Command
-
- hkeys(String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- hkeys(String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Get all the fields in a hash
- hkeys(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get all the fields in a hash
- HLEN - Static variable in interface io.vertx.redis.client.Command
-
- hlen(String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- hlen(String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Get the number of fields in a hash
- hlen(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get the number of fields in a hash
- HMGET - Static variable in interface io.vertx.redis.client.Command
-
- hmget(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- hmget(String, List<String>, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Get the values of all the given hash fields
- hmget(String, List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get the values of all the given hash fields
- HMSET - Static variable in interface io.vertx.redis.client.Command
-
- hmset(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- hmset(String, JsonObject, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Set multiple hash fields to multiple values
- hmset(String, JsonObject, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set multiple hash fields to multiple values
- HOST - Static variable in interface io.vertx.redis.client.Command
-
- host(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- HSCAN - Static variable in interface io.vertx.redis.client.Command
-
- hscan(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- hscan(String, String, ScanOptions, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Incrementally iterate hash fields and associated values
- hscan(String, String, ScanOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Incrementally iterate hash fields and associated values
- HSET - Static variable in interface io.vertx.redis.client.Command
-
- hset(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- hset(String, String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Set the string value of a hash field
- hset(String, String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set the string value of a hash field
- HSETNX - Static variable in interface io.vertx.redis.client.Command
-
- hsetnx(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- hsetnx(String, String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Set the value of a hash field, only if the field does not exist
- hsetnx(String, String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set the value of a hash field, only if the field does not exist
- HSTRLEN - Static variable in interface io.vertx.redis.client.Command
-
- hstrlen(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- hstrlen(String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Get the length of the value of a hash field.
- HVALS - Static variable in interface io.vertx.redis.client.Command
-
- hvals(String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- hvals(String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Get all the values in a hash
- hvals(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get all the values in a hash
- pause() - Method in interface io.vertx.redis.client.Redis
-
Pause the ReadStream
, it sets the buffer in fetch
mode and clears the actual demand.
- PERSIST - Static variable in interface io.vertx.redis.client.Command
-
- persist(String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- persist(String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Remove the expiration from a key
- persist(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove the expiration from a key
- PEXPIRE - Static variable in interface io.vertx.redis.client.Command
-
- pexpire(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- pexpire(String, long, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Set a key's time to live in milliseconds
- pexpire(String, long, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set a key's time to live in milliseconds
- PEXPIREAT - Static variable in interface io.vertx.redis.client.Command
-
- pexpireat(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- pexpireat(String, long, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Set the expiration for a key as a UNIX timestamp specified in milliseconds
- pexpireat(String, long, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set the expiration for a key as a UNIX timestamp specified in milliseconds
- PFADD - Static variable in interface io.vertx.redis.client.Command
-
- pfadd(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- pfadd(String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Adds the specified element to the specified HyperLogLog.
- pfadd(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Adds the specified element to the specified HyperLogLog.
- pfaddMany(String, List<String>, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Adds the specified elements to the specified HyperLogLog.
- pfaddMany(String, List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Adds the specified elements to the specified HyperLogLog.
- PFCOUNT - Static variable in interface io.vertx.redis.client.Command
-
- pfcount(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- pfcount(String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Return the approximated cardinality of the set observed by the HyperLogLog at key.
- pfcount(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return the approximated cardinality of the set observed by the HyperLogLog at key.
- pfcountMany(List<String>, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Return the approximated cardinality of the set(s) observed by the HyperLogLog at key(s).
- pfcountMany(List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return the approximated cardinality of the set(s) observed by the HyperLogLog at key(s).
- PFDEBUG - Static variable in interface io.vertx.redis.client.Command
-
- pfdebug(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- PFMERGE - Static variable in interface io.vertx.redis.client.Command
-
- pfmerge(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- pfmerge(String, List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Merge N different HyperLogLogs into a single one.
- pfmerge(String, List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Merge N different HyperLogLogs into a single one.
- PFSELFTEST - Static variable in interface io.vertx.redis.client.Command
-
- pfselftest(Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- PING - Static variable in interface io.vertx.redis.client.Command
-
- ping(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- ping(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Ping the server
- ping(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Ping the server
- POST - Static variable in interface io.vertx.redis.client.Command
-
- post(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- PSETEX - Static variable in interface io.vertx.redis.client.Command
-
- psetex(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- psetex(String, long, String, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Set the value and expiration in milliseconds of a key
- psetex(String, long, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set the value and expiration in milliseconds of a key
- PSUBSCRIBE - Static variable in interface io.vertx.redis.client.Command
-
- psubscribe(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- psubscribe(String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Listen for messages published to channels matching the given pattern
- psubscribe(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Listen for messages published to channels matching the given pattern
- psubscribeMany(List<String>, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Listen for messages published to channels matching the given patterns
- psubscribeMany(List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Listen for messages published to channels matching the given patterns
- PSYNC - Static variable in interface io.vertx.redis.client.Command
-
- psync(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- PTTL - Static variable in interface io.vertx.redis.client.Command
-
- pttl(String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- pttl(String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Get the time to live for a key in milliseconds
- pttl(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get the time to live for a key in milliseconds
- PUBLISH - Static variable in interface io.vertx.redis.client.Command
-
- publish(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- publish(String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Post a message to a channel
- publish(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Post a message to a channel
- PUBSUB - Static variable in interface io.vertx.redis.client.Command
-
- pubsub(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- pubsubChannels(String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Lists the currently active channels - only those matching the pattern
- pubsubChannels(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Lists the currently active channels - only those matching the pattern
- pubsubNumpat(Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Returns the number of subscriptions to patterns (that are performed using the PSUBSCRIBE command)
- pubsubNumpat(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Returns the number of subscriptions to patterns (that are performed using the PSUBSCRIBE command)
- pubsubNumsub(List<String>, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Returns the number of subscribers (not counting clients subscribed to patterns) for the specified channels
- pubsubNumsub(List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Returns the number of subscribers (not counting clients subscribed to patterns) for the specified channels
- PUNSUBSCRIBE - Static variable in interface io.vertx.redis.client.Command
-
- punsubscribe(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- punsubscribe(List<String>, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Stop listening for messages posted to channels matching the given patterns
- punsubscribe(List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Stop listening for messages posted to channels matching the given patterns
- RANDOMKEY - Static variable in interface io.vertx.redis.client.Command
-
- randomkey(Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- randomkey(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Return a random key from the keyspace
- randomkey(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return a random key from the keyspace
- RangeLimitOptions - Class in io.vertx.redis.op
-
- RangeLimitOptions() - Constructor for class io.vertx.redis.op.RangeLimitOptions
-
- RangeLimitOptions(RangeLimitOptions) - Constructor for class io.vertx.redis.op.RangeLimitOptions
-
- RangeLimitOptions(JsonObject) - Constructor for class io.vertx.redis.op.RangeLimitOptions
-
- RangeOptions - Enum in io.vertx.redis.op
-
- READONLY - Static variable in interface io.vertx.redis.client.Command
-
- readonly(Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- READWRITE - Static variable in interface io.vertx.redis.client.Command
-
- readwrite(Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- Redis - Interface in io.vertx.redis.client
-
A simple Redis client.
- RedisAPI - Interface in io.vertx.redis.client
-
Auto generated Redis API client wrapper.
- RedisClient - Interface in io.vertx.redis
-
- RedisClientType - Enum in io.vertx.redis.client
-
Define what kind of behavior is expected from the client.
- RedisException - Exception in io.vertx.redis.client
-
Maps a redis error message to a JVM Exception type.
- RedisException(String) - Constructor for exception io.vertx.redis.client.RedisException
-
- RedisOptions - Class in io.vertx.redis.client
-
Redis Client Configuration options.
- RedisOptions() - Constructor for class io.vertx.redis.client.RedisOptions
-
Creates a default configuration object using redis server defaults
- RedisOptions(RedisOptions) - Constructor for class io.vertx.redis.client.RedisOptions
-
Copy constructor.
- RedisOptions(JsonObject) - Constructor for class io.vertx.redis.client.RedisOptions
-
Copy from JSON constructor.
- RedisOptions - Class in io.vertx.redis
-
This object controls the connection setting to the Redis Server.
- RedisOptions() - Constructor for class io.vertx.redis.RedisOptions
-
- RedisOptions(RedisOptions) - Constructor for class io.vertx.redis.RedisOptions
-
- RedisOptions(JsonObject) - Constructor for class io.vertx.redis.RedisOptions
-
- RedisOptionsConverter - Class in io.vertx.redis.client
-
- RedisOptionsConverter() - Constructor for class io.vertx.redis.client.RedisOptionsConverter
-
- RedisOptionsConverter - Class in io.vertx.redis
-
- RedisOptionsConverter() - Constructor for class io.vertx.redis.RedisOptionsConverter
-
- RedisRole - Enum in io.vertx.redis.client
-
Define which kind of role to be used in HA mode.
- RedisSentinel - Interface in io.vertx.redis.sentinel
-
Interface for sentinel commands
- RedisSlaves - Enum in io.vertx.redis.client
-
When should Redis Slave nodes be used for queries.
- RedisTransaction - Interface in io.vertx.redis
-
This Interface represents a TX
- RENAME - Static variable in interface io.vertx.redis.client.Command
-
- rename(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- rename(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Rename a key
- rename(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Rename a key
- RENAMENX - Static variable in interface io.vertx.redis.client.Command
-
- renamenx(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- renamenx(String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Rename a key, only if the new key does not exist
- renamenx(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Rename a key, only if the new key does not exist
- REPLCONF - Static variable in interface io.vertx.redis.client.Command
-
- replconf(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- REPLICAOF - Static variable in interface io.vertx.redis.client.Command
-
- replicaof(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- Request - Interface in io.vertx.redis.client
-
Builder for REDIS requests that will be encoded according to the RESP protocol was introduced in Redis 1.2.
- reset(String, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.sentinel.RedisSentinel
-
Reset all the masters with matching name.
- ResetOptions - Enum in io.vertx.redis.op
-
- Response - Interface in io.vertx.redis.client
-
The response received from the REDIS server.
- ResponseType - Enum in io.vertx.redis.client
-
Define the response types that the client can receive from REDIS.
- RESTORE - Static variable in interface io.vertx.redis.client.Command
-
- restore(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- restore(String, long, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Create a key using the provided serialized value, previously obtained using DUMP.
- restore(String, long, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Create a key using the provided serialized value, previously obtained using DUMP.
- RESTORE_ASKING - Static variable in interface io.vertx.redis.client.Command
-
- restoreAsking(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- resume() - Method in interface io.vertx.redis.client.Redis
-
Resume reading, and sets the buffer in flowing
mode.
- ROLE - Static variable in interface io.vertx.redis.client.Command
-
- role(Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- role(Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Return the role of the instance in the context of replication
- role(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return the role of the instance in the context of replication
- RPOP - Static variable in interface io.vertx.redis.client.Command
-
- rpop(String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- rpop(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Remove and get the last element in a list
- rpop(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove and get the last element in a list
- RPOPLPUSH - Static variable in interface io.vertx.redis.client.Command
-
- rpoplpush(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- rpoplpush(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Remove the last element in a list, append it to another list and return it
- rpoplpush(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove the last element in a list, append it to another list and return it
- RPUSH - Static variable in interface io.vertx.redis.client.Command
-
- rpush(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- rpush(String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Append one or multiple values to a list
- rpush(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Append one or multiple values to a list
- rpushMany(String, List<String>, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Append one or multiple values to a list
- rpushMany(String, List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Append one or multiple values to a list
- RPUSHX - Static variable in interface io.vertx.redis.client.Command
-
- rpushx(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- rpushx(String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Append a value to a list, only if the list exists
- rpushx(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Append a value to a list, only if the list exists
- SADD - Static variable in interface io.vertx.redis.client.Command
-
- sadd(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- sadd(String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Add a member to a set
- sadd(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Add a member to a set
- saddMany(String, List<String>, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Add one or more members to a set
- saddMany(String, List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Add one or more members to a set
- SAVE - Static variable in interface io.vertx.redis.client.Command
-
- save(Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- save(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Synchronously save the dataset to disk
- save(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Synchronously save the dataset to disk
- SCAN - Static variable in interface io.vertx.redis.client.Command
-
- scan(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- scan(String, ScanOptions, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Incrementally iterate the keys space
- scan(String, ScanOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Incrementally iterate the keys space
- ScanOptions - Class in io.vertx.redis.op
-
- ScanOptions() - Constructor for class io.vertx.redis.op.ScanOptions
-
- ScanOptions(ScanOptions) - Constructor for class io.vertx.redis.op.ScanOptions
-
- ScanOptions(JsonObject) - Constructor for class io.vertx.redis.op.ScanOptions
-
- SCARD - Static variable in interface io.vertx.redis.client.Command
-
- scard(String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- scard(String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Get the number of members in a set
- scard(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get the number of members in a set
- SCRIPT - Static variable in interface io.vertx.redis.client.Command
-
- script(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- Script - Interface in io.vertx.redis
-
Container for a script and its sha1 hash.
- scriptDebug(ScriptDebugOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Set the debug mode for executed scripts.
- ScriptDebugOptions - Enum in io.vertx.redis.op
-
- scriptExists(String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Check existence of script in the script cache.
- scriptExists(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Check existence of script in the script cache.
- scriptExistsMany(List<String>, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Check existence of scripts in the script cache.
- scriptExistsMany(List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Check existence of scripts in the script cache.
- scriptFlush(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Remove all the scripts from the script cache.
- scriptFlush(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove all the scripts from the script cache.
- scriptKill(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Kill the script currently in execution.
- scriptKill(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Kill the script currently in execution.
- scriptLoad(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Load the specified Lua script into the script cache.
- scriptLoad(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Load the specified Lua script into the script cache.
- SDIFF - Static variable in interface io.vertx.redis.client.Command
-
- sdiff(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- sdiff(String, List<String>, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Subtract multiple sets
- sdiff(String, List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Subtract multiple sets
- SDIFFSTORE - Static variable in interface io.vertx.redis.client.Command
-
- sdiffstore(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- sdiffstore(String, String, List<String>, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Subtract multiple sets and store the resulting set in a key
- sdiffstore(String, String, List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Subtract multiple sets and store the resulting set in a key
- SELECT - Static variable in interface io.vertx.redis.client.Command
-
- select(String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- select(int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Change the selected database for the current connection
- select(int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Change the selected database for the current connection
- send(Request, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.Redis
-
- send(Command, Object...) - Method in interface io.vertx.redis.client.RedisAPI
-
- SENTINEL - Static variable in interface io.vertx.redis.client.Command
-
- sentinels(String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.sentinel.RedisSentinel
-
Show a list of sentinel instances for this master, and their state
- SET - Static variable in interface io.vertx.redis.client.Command
-
- set(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- set(String, String, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Set the string value of a key
- set(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set the string value of a key
- setAddr(String) - Method in class io.vertx.redis.op.KillFilter
-
Set ADDR filter
- setAddress(String) - Method in class io.vertx.redis.RedisOptions
-
Set the eventbus address prefix for `PUB/SUB`.
- setAlpha(Boolean) - Method in class io.vertx.redis.op.SortOptions
-
- setAuth(String) - Method in class io.vertx.redis.RedisOptions
-
Set the password for authentication at connection time.
- setBinary(String, Buffer, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Set the binary string value of a key - without encoding as utf-8
- setBinary(boolean) - Method in class io.vertx.redis.RedisOptions
-
Set the messages to/from redis as binary, default `false`.
- setBinary(String, Buffer, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set the binary string value of a key - without encoding as utf-8
- setBinaryWithOptions(String, Buffer, SetOptions, Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Set the string value of a key
- setBinaryWithOptions(String, Buffer, SetOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set the string value of a key
- SETBIT - Static variable in interface io.vertx.redis.client.Command
-
- setbit(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- setbit(String, long, int, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Sets or clears the bit at offset in the string value stored at key
- setbit(String, long, int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Sets or clears the bit at offset in the string value stored at key
- setBy(String) - Method in class io.vertx.redis.op.SortOptions
-
- setCopy(Boolean) - Method in class io.vertx.redis.op.MigrateOptions
-
- setCount(Long) - Method in class io.vertx.redis.op.GeoRadiusOptions
-
Set the radius options limit the result count.
- setCount(Long) - Method in class io.vertx.redis.op.LimitOptions
-
- setCount(int) - Method in class io.vertx.redis.op.ScanOptions
-
- setDescending(Boolean) - Method in class io.vertx.redis.op.SortOptions
-
- setDomainSocket(boolean) - Method in class io.vertx.redis.RedisOptions
-
Set the domain socket enabled option, default `false`.
- setDomainSocketAddress(String) - Method in class io.vertx.redis.RedisOptions
-
Set the domain socket address where the Redis server is listening.
- setEncoding(String) - Method in class io.vertx.redis.RedisOptions
-
Set the user defined character encoding, e.g.: `iso-8859-1`.
- setEndpoint(SocketAddress) - Method in class io.vertx.redis.client.RedisOptions
-
Sets a single endpoint to use while connecting to the redis server.
- setEndpoints(List<SocketAddress>) - Method in class io.vertx.redis.client.RedisOptions
-
Set the endpoints to use while connecting to the redis server.
- SETEX - Static variable in interface io.vertx.redis.client.Command
-
- setex(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- setEX(long) - Method in class io.vertx.redis.op.SetOptions
-
- setex(String, long, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Set the value and expiration of a key
- setex(String, long, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set the value and expiration of a key
- setGet(BitFieldGetCommand) - Method in class io.vertx.redis.op.BitFieldOptions
-
- setHost(String) - Method in class io.vertx.redis.RedisOptions
-
Set the host name where the Redis server is listening.
- setId(String) - Method in class io.vertx.redis.op.KillFilter
-
Set ID filter
- setIncrby(BitFieldIncrbyCommand) - Method in class io.vertx.redis.op.BitFieldOptions
-
- setIncrement(long) - Method in class io.vertx.redis.op.BitFieldIncrbyCommand
-
- setLatitude(Double) - Method in class io.vertx.redis.op.GeoMember
-
Set Latitude as per EPSG:900913 / EPSG:3785 / OSGEO:41001
- setLimit(long, long) - Method in class io.vertx.redis.op.LimitOptions
-
- setLimit(long, long) - Method in class io.vertx.redis.op.SortOptions
-
- setLongitude(Double) - Method in class io.vertx.redis.op.GeoMember
-
Set Longitude as per EPSG:900913 / EPSG:3785 / OSGEO:41001
- setMasterName(String) - Method in class io.vertx.redis.client.RedisOptions
-
Set the master name (only considered in HA mode).
- setMasterName(String) - Method in class io.vertx.redis.RedisOptions
-
Set name of Redis master (used with Sentinel).
- setMatch(String) - Method in class io.vertx.redis.op.ScanOptions
-
- setMaxNestedArrays(int) - Method in class io.vertx.redis.client.RedisOptions
-
Tune how much nested arrays are allowed on a redis response.
- setMaxWaitingHandlers(int) - Method in class io.vertx.redis.client.RedisOptions
-
The client will always work on pipeline mode, this means that messages can start queueing.
- setMember(String) - Method in class io.vertx.redis.op.GeoMember
-
Set the member name.
- setNetClientOptions(NetClientOptions) - Method in class io.vertx.redis.client.RedisOptions
-
Set the net client options to be used while connecting to the redis server.
- SETNX - Static variable in interface io.vertx.redis.client.Command
-
- setnx(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- setNX(boolean) - Method in class io.vertx.redis.op.SetOptions
-
- setnx(String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Set the value of a key, only if the key does not exist
- setnx(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set the value of a key, only if the key does not exist
- setOffset(long) - Method in class io.vertx.redis.op.BitFieldGetCommand
-
- setOffset(long) - Method in class io.vertx.redis.op.BitFieldIncrbyCommand
-
- setOffset(long) - Method in class io.vertx.redis.op.BitFieldSetCommand
-
- setOffset(Long) - Method in class io.vertx.redis.op.LimitOptions
-
- SetOptions - Class in io.vertx.redis.op
-
- SetOptions() - Constructor for class io.vertx.redis.op.SetOptions
-
- SetOptions(SetOptions) - Constructor for class io.vertx.redis.op.SetOptions
-
- SetOptions(JsonObject) - Constructor for class io.vertx.redis.op.SetOptions
-
- setPassword(String) - Method in class io.vertx.redis.client.RedisOptions
-
Set the provided password to be used when establishing a connection to the server.
- setPort(int) - Method in class io.vertx.redis.RedisOptions
-
Set the tcp port where the Redis server is listening.
- setPX(long) - Method in class io.vertx.redis.op.SetOptions
-
- SETRANGE - Static variable in interface io.vertx.redis.client.Command
-
- setrange(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- setrange(String, int, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Overwrite part of a string at key starting at the specified offset
- setrange(String, int, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Overwrite part of a string at key starting at the specified offset
- setReplace(Boolean) - Method in class io.vertx.redis.op.MigrateOptions
-
- setRole(RedisRole) - Method in class io.vertx.redis.client.RedisOptions
-
Set the role name (only considered in HA mode).
- setSelect(Integer) - Method in class io.vertx.redis.client.RedisOptions
-
Set the provided database to be selected when establishing a connection to the server.
- setSelect(Integer) - Method in class io.vertx.redis.RedisOptions
-
Set the database to select at connection time.
- setSentinels(List<String>) - Method in class io.vertx.redis.RedisOptions
-
Set the list of Sentinels.
- setSet(BitFieldSetCommand) - Method in class io.vertx.redis.op.BitFieldOptions
-
- setSkipme(boolean) - Method in class io.vertx.redis.op.KillFilter
-
Set SKIPME filter
- setStore(String) - Method in class io.vertx.redis.op.SortOptions
-
- setType(RedisClientType) - Method in class io.vertx.redis.client.RedisOptions
-
Set the desired client type to be created.
- setType(String) - Method in class io.vertx.redis.op.BitFieldGetCommand
-
- setType(String) - Method in class io.vertx.redis.op.BitFieldIncrbyCommand
-
- setType(String) - Method in class io.vertx.redis.op.BitFieldSetCommand
-
- setType(KillFilter.Type) - Method in class io.vertx.redis.op.KillFilter
-
Set TYPE filter
- setUseSlave(RedisSlaves) - Method in class io.vertx.redis.client.RedisOptions
-
Set whether or not to use slave nodes (only considered in Cluster mode).
- setValue(long) - Method in class io.vertx.redis.op.BitFieldSetCommand
-
- setWithCoord(boolean) - Method in class io.vertx.redis.op.GeoRadiusOptions
-
Set the radius options to be coordinate based.
- setWithDist(boolean) - Method in class io.vertx.redis.op.GeoRadiusOptions
-
Set the radius options to be distance based.
- setWithHash(boolean) - Method in class io.vertx.redis.op.GeoRadiusOptions
-
Set the radius options to be hash based.
- setWithOptions(String, String, SetOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Set the string value of a key
- setWithOptions(String, String, SetOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Set the string value of a key
- setWithscores(Boolean) - Method in class io.vertx.redis.op.RangeLimitOptions
-
- setXX(boolean) - Method in class io.vertx.redis.op.SetOptions
-
- SHUTDOWN - Static variable in interface io.vertx.redis.client.Command
-
- shutdown(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- ShutdownOptions - Enum in io.vertx.redis.op
-
- SINTER - Static variable in interface io.vertx.redis.client.Command
-
- sinter(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- sinter(List<String>, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Intersect multiple sets
- sinter(List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Intersect multiple sets
- SINTERSTORE - Static variable in interface io.vertx.redis.client.Command
-
- sinterstore(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- sinterstore(String, List<String>, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Intersect multiple sets and store the resulting set in a key
- sinterstore(String, List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Intersect multiple sets and store the resulting set in a key
- SISMEMBER - Static variable in interface io.vertx.redis.client.Command
-
- sismember(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- sismember(String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Determine if a given value is a member of a set
- sismember(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Determine if a given value is a member of a set
- size() - Method in interface io.vertx.redis.client.Response
-
Get this size of this multi response.
- SLAVEOF - Static variable in interface io.vertx.redis.client.Command
-
- slaveof(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- slaveof(String, int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Make the server a slave of another instance
- slaveof(String, int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Make the server a slave of another instance
- slaveofNoone(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Make this server a master
- slaveofNoone(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Make this server a master
- slaves(String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.sentinel.RedisSentinel
-
Show a list of slaves for this master, and their state
- slice(char, int) - Method in exception io.vertx.redis.client.RedisException
-
Some messages are well formatted and allow extracting data from.
- SlotCmd - Enum in io.vertx.redis.op
-
- SLOWLOG - Static variable in interface io.vertx.redis.client.Command
-
- slowlog(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- slowlogGet(int, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Read the Redis slow queries log
- slowlogGet(int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Read the Redis slow queries log
- slowlogLen(Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Get the length of the Redis slow queries log
- slowlogLen(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get the length of the Redis slow queries log
- slowlogReset(Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Reset the Redis slow queries log
- slowlogReset(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Reset the Redis slow queries log
- SMEMBERS - Static variable in interface io.vertx.redis.client.Command
-
- smembers(String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- smembers(String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Get all the members in a set
- smembers(String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get all the members in a set
- SMOVE - Static variable in interface io.vertx.redis.client.Command
-
- smove(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- smove(String, String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Move a member from one set to another
- smove(String, String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Move a member from one set to another
- socketAddress() - Method in interface io.vertx.redis.client.Redis
-
Returns the address associated with this client.
- SORT - Static variable in interface io.vertx.redis.client.Command
-
- sort(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- sort(String, SortOptions, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Sort the elements in a list, set or sorted set
- sort(String, SortOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Sort the elements in a list, set or sorted set
- SortOptions - Class in io.vertx.redis.op
-
- SortOptions() - Constructor for class io.vertx.redis.op.SortOptions
-
- SortOptions(SortOptions) - Constructor for class io.vertx.redis.op.SortOptions
-
- SortOptions(JsonObject) - Constructor for class io.vertx.redis.op.SortOptions
-
- SPOP - Static variable in interface io.vertx.redis.client.Command
-
- spop(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- spop(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Remove and return a random member from a set
- spop(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove and return a random member from a set
- spopMany(String, int, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Remove and return random members from a set
- spopMany(String, int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove and return random members from a set
- SRANDMEMBER - Static variable in interface io.vertx.redis.client.Command
-
- srandmember(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- srandmember(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Get one or multiple random members from a set
- srandmember(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get one or multiple random members from a set
- srandmemberCount(String, int, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Get one or multiple random members from a set
- srandmemberCount(String, int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get one or multiple random members from a set
- SREM - Static variable in interface io.vertx.redis.client.Command
-
- srem(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- srem(String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Remove one member from a set
- srem(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove one member from a set
- sremMany(String, List<String>, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Remove one or more members from a set
- sremMany(String, List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove one or more members from a set
- SSCAN - Static variable in interface io.vertx.redis.client.Command
-
- sscan(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- sscan(String, String, ScanOptions, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Incrementally iterate Set elements
- sscan(String, String, ScanOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Incrementally iterate Set elements
- STRLEN - Static variable in interface io.vertx.redis.client.Command
-
- strlen(String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- strlen(String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Get the length of the value stored in a key
- strlen(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get the length of the value stored in a key
- SUBSCRIBE - Static variable in interface io.vertx.redis.client.Command
-
- subscribe(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- subscribe(String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Listen for messages published to the given channels
- subscribe(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Listen for messages published to the given channels
- subscribeMany(List<String>, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Listen for messages published to the given channels
- subscribeMany(List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Listen for messages published to the given channels
- SUBSTR - Static variable in interface io.vertx.redis.client.Command
-
- substr(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- SUNION - Static variable in interface io.vertx.redis.client.Command
-
- sunion(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- sunion(List<String>, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Add multiple sets
- sunion(List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Add multiple sets
- SUNIONSTORE - Static variable in interface io.vertx.redis.client.Command
-
- sunionstore(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- sunionstore(String, List<String>, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Add multiple sets and store the resulting set in a key
- sunionstore(String, List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Add multiple sets and store the resulting set in a key
- SWAPDB - Static variable in interface io.vertx.redis.client.Command
-
- swapdb(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- swapdb(int, int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Swaps two Redis databases
- swapdb(int, int, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Swaps two Redis databases
- SYNC - Static variable in interface io.vertx.redis.client.Command
-
- sync(Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- sync(Handler<AsyncResult<Void>>) - Method in interface io.vertx.redis.RedisClient
-
Internal command used for replication
- sync(Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Internal command used for replication
- valueOf(String) - Static method in enum io.vertx.redis.client.RedisClientType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.client.RedisRole
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.client.RedisSlaves
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.client.ResponseType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.op.AggregateOptions
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.op.BitFieldOverflowOptions
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.op.BitOperation
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.op.ClientReplyOptions
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.op.FailoverOptions
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.op.GeoUnit
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.op.InsertOptions
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.op.KillFilter.Type
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.op.ObjectCmd
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.op.RangeOptions
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.op.ResetOptions
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.op.ScriptDebugOptions
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.op.ShutdownOptions
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum io.vertx.redis.op.SlotCmd
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum io.vertx.redis.client.RedisClientType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.client.RedisRole
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.client.RedisSlaves
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.client.ResponseType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.op.AggregateOptions
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.op.BitFieldOverflowOptions
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.op.BitOperation
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.op.ClientReplyOptions
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.op.FailoverOptions
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.op.GeoUnit
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.op.InsertOptions
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.op.KillFilter.Type
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.op.ObjectCmd
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.op.RangeOptions
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.op.ResetOptions
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.op.ScriptDebugOptions
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.op.ShutdownOptions
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum io.vertx.redis.op.SlotCmd
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- ZADD - Static variable in interface io.vertx.redis.client.Command
-
- zadd(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zadd(String, double, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Add one or more members to a sorted set, or update its score if it already exists
- zadd(String, double, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
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 interface io.vertx.redis.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<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Add one or more members to a sorted set, or update its score if it already exists
- ZCARD - Static variable in interface io.vertx.redis.client.Command
-
- zcard(String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zcard(String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Get the number of members in a sorted set
- zcard(String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get the number of members in a sorted set
- ZCOUNT - Static variable in interface io.vertx.redis.client.Command
-
- zcount(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zcount(String, double, double, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Count the members in a sorted set with scores within the given values
- zcount(String, double, double, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Count the members in a sorted set with scores within the given values
- ZINCRBY - Static variable in interface io.vertx.redis.client.Command
-
- zincrby(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zincrby(String, double, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Increment the score of a member in a sorted set
- zincrby(String, double, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Increment the score of a member in a sorted set
- ZINTERSTORE - Static variable in interface io.vertx.redis.client.Command
-
- zinterstore(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zinterstore(String, List<String>, AggregateOptions, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Intersect multiple sorted sets and store the resulting sorted set in a new key
- zinterstore(String, List<String>, AggregateOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
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 interface io.vertx.redis.RedisClient
-
Intersect multiple sorted sets and store the resulting sorted set in a new key using weights for scoring
- zinterstoreWeighed(String, Map<String, Double>, AggregateOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Intersect multiple sorted sets and store the resulting sorted set in a new key using weights for scoring
- ZLEXCOUNT - Static variable in interface io.vertx.redis.client.Command
-
- zlexcount(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zlexcount(String, String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Count the number of members in a sorted set between a given lexicographical range
- zlexcount(String, String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Count the number of members in a sorted set between a given lexicographical range
- ZPOPMAX - Static variable in interface io.vertx.redis.client.Command
-
- zpopmax(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- ZPOPMIN - Static variable in interface io.vertx.redis.client.Command
-
- zpopmin(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- ZRANGE - Static variable in interface io.vertx.redis.client.Command
-
- zrange(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zrange(String, long, long, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Return a range of members in a sorted set, by index
- zrange(String, long, long, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return a range of members in a sorted set, by index
- ZRANGEBYLEX - Static variable in interface io.vertx.redis.client.Command
-
- zrangebylex(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zrangebylex(String, String, String, LimitOptions, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Return a range of members in a sorted set, by lexicographical range
- zrangebylex(String, String, String, LimitOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return a range of members in a sorted set, by lexicographical range
- ZRANGEBYSCORE - Static variable in interface io.vertx.redis.client.Command
-
- zrangebyscore(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zrangebyscore(String, String, String, RangeLimitOptions, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Return a range of members in a sorted set, by score
- zrangebyscore(String, String, String, RangeLimitOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return a range of members in a sorted set, by score
- zrangeWithOptions(String, long, long, RangeOptions, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Return a range of members in a sorted set, by index
- zrangeWithOptions(String, long, long, RangeOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return a range of members in a sorted set, by index
- ZRANK - Static variable in interface io.vertx.redis.client.Command
-
- zrank(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zrank(String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Determine the index of a member in a sorted set
- zrank(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Determine the index of a member in a sorted set
- ZREM - Static variable in interface io.vertx.redis.client.Command
-
- zrem(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zrem(String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Remove one member from a sorted set
- zrem(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove one member from a sorted set
- zremMany(String, List<String>, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Remove one or more members from a sorted set
- zremMany(String, List<String>, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove one or more members from a sorted set
- ZREMRANGEBYLEX - Static variable in interface io.vertx.redis.client.Command
-
- zremrangebylex(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zremrangebylex(String, String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Remove all members in a sorted set between the given lexicographical range
- zremrangebylex(String, String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove all members in a sorted set between the given lexicographical range
- ZREMRANGEBYRANK - Static variable in interface io.vertx.redis.client.Command
-
- zremrangebyrank(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zremrangebyrank(String, long, long, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Remove all members in a sorted set within the given indexes
- zremrangebyrank(String, long, long, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove all members in a sorted set within the given indexes
- ZREMRANGEBYSCORE - Static variable in interface io.vertx.redis.client.Command
-
- zremrangebyscore(String, String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zremrangebyscore(String, String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Remove all members in a sorted set within the given scores
- zremrangebyscore(String, String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Remove all members in a sorted set within the given scores
- ZREVRANGE - Static variable in interface io.vertx.redis.client.Command
-
- zrevrange(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zrevrange(String, long, long, RangeOptions, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Return a range of members in a sorted set, by index, with scores ordered from high to low
- zrevrange(String, long, long, RangeOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return a range of members in a sorted set, by index, with scores ordered from high to low
- ZREVRANGEBYLEX - Static variable in interface io.vertx.redis.client.Command
-
- zrevrangebylex(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zrevrangebylex(String, String, String, LimitOptions, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Return a range of members in a sorted set, by score, between the given lexicographical range with scores ordered from high to low
- zrevrangebylex(String, String, String, LimitOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return a range of members in a sorted set, by score, between the given lexicographical range with scores ordered from high to low
- ZREVRANGEBYSCORE - Static variable in interface io.vertx.redis.client.Command
-
- zrevrangebyscore(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zrevrangebyscore(String, String, String, RangeLimitOptions, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Return a range of members in a sorted set, by score, with scores ordered from high to low
- zrevrangebyscore(String, String, String, RangeLimitOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Return a range of members in a sorted set, by score, with scores ordered from high to low
- ZREVRANK - Static variable in interface io.vertx.redis.client.Command
-
- zrevrank(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zrevrank(String, String, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Determine the index of a member in a sorted set, with scores ordered from high to low
- zrevrank(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Determine the index of a member in a sorted set, with scores ordered from high to low
- ZSCAN - Static variable in interface io.vertx.redis.client.Command
-
- zscan(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zscan(String, String, ScanOptions, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.redis.RedisClient
-
Incrementally iterate sorted sets elements and associated scores
- zscan(String, String, ScanOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Incrementally iterate sorted sets elements and associated scores
- ZSCORE - Static variable in interface io.vertx.redis.client.Command
-
- zscore(String, String, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zscore(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisClient
-
Get the score associated with the given member in a sorted set
- zscore(String, String, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Get the score associated with the given member in a sorted set
- ZUNIONSTORE - Static variable in interface io.vertx.redis.client.Command
-
- zunionstore(List<String>, Handler<AsyncResult<Response>>) - Method in interface io.vertx.redis.client.RedisAPI
-
- zunionstore(String, List<String>, AggregateOptions, Handler<AsyncResult<Long>>) - Method in interface io.vertx.redis.RedisClient
-
Add multiple sorted sets and store the resulting sorted set in a new key
- zunionstore(String, List<String>, AggregateOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
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 interface io.vertx.redis.RedisClient
-
Add multiple sorted sets using weights, and store the resulting sorted set in a new key
- zunionstoreWeighed(String, Map<String, Double>, AggregateOptions, Handler<AsyncResult<String>>) - Method in interface io.vertx.redis.RedisTransaction
-
Add multiple sorted sets using weights, and store the resulting sorted set in a new key