Uses of Interface
io.vertx.redis.client.Request
Packages that use Request
Package
Description
-
Uses of Request in io.vertx.reactivex.redis.client
Methods in io.vertx.reactivex.redis.client with parameters of type RequestModifier and TypeMethodDescriptionRedisCluster.onAllMasterNodes(Request request) Runs therequestagainst all master nodes in the cluster.RedisCluster.onAllNodes(Request request) Runs therequestagainst all nodes in the cluster.RedisCluster.rxOnAllMasterNodes(Request request) Runs therequestagainst all master nodes in the cluster.RedisCluster.rxOnAllNodes(Request request) Runs therequestagainst all nodes in the cluster.Send the given command to the Redis server or cluster.Send the given command to the redis server or cluster.Send the given command to the Redis server or cluster.Send the given command to the redis server or cluster.Method parameters in io.vertx.reactivex.redis.client with type arguments of type RequestModifier and TypeMethodDescriptionSends a list of commands in a single IO operation, this prevents any inter twinning to happen from other client users.Sends a list of commands in a single IO operation, this prevents any inter twinning to happen from other client users.RedisCluster.groupByNodes(List<Request> requests) Groups therequestsinto aRequestGrouping, which contains: keyed requests: requests that include a key and it is therefore possible to determine to which master node they should be sent; all requests in each inner list in thekeyedcollection are guaranteed to be sent to the same master node; unkeyed requests: requests that do not include a key and it is therefore not possible to determine to which master node they should be sent. If any of therequestsincludes multiple keys that belong to different master nodes, the resulting future will fail.Sends a list of commands in a single IO operation, this prevents any inter twinning to happen from other client users.Sends a list of commands in a single IO operation, this prevents any inter twinning to happen from other client users.RedisCluster.rxGroupByNodes(List<Request> requests) Groups therequestsinto aRequestGrouping, which contains: keyed requests: requests that include a key and it is therefore possible to determine to which master node they should be sent; all requests in each inner list in thekeyedcollection are guaranteed to be sent to the same master node; unkeyed requests: requests that do not include a key and it is therefore not possible to determine to which master node they should be sent. If any of therequestsincludes multiple keys that belong to different master nodes, the resulting future will fail. -
Uses of Request in io.vertx.redis.client
Methods in io.vertx.redis.client that return RequestModifier and TypeMethodDescriptionRequest.arg(boolean arg) Adds a boolean encoded to stringdefault RequestRequest.arg(byte arg) Adds a byte encoded to stringRequest.arg(byte[] arg) Adds a byte arraydefault RequestRequest.arg(double arg) Adds a double encoded to stringdefault RequestRequest.arg(float arg) Adds a float encoded to stringdefault RequestRequest.arg(int arg) Adds a int encoded to stringRequest.arg(long arg) Adds a long encoded to stringdefault RequestRequest.arg(short arg) Adds a short encoded to stringAdds a String key argumentdefault RequestAdds a JsonArray argument, the encoding will serialize the json as value0, value1, ... valueN.default RequestRequest.arg(JsonObject arg) Adds a JsonObject argument, the encoding will serialize the json as key0, value0, key1, value1, ... keyN, valueN.default RequestAdds a String argument using UTF8 character encodingdefault RequestAdds a String using a specific character encoding argumentstatic RequestCreates a new request.static RequestMethods in io.vertx.redis.client that return types with arguments of type RequestModifier and TypeMethodDescriptionRequestGrouping.getKeyed()Returns a collection of request groups such that all requests in each group are guaranteed to be sent to the same master node.RequestGrouping.getUnkeyed()Returns a collection of requests that do not specify a key and would therefore be executed on random node.Methods in io.vertx.redis.client with parameters of type RequestModifier and TypeMethodDescriptionRedisCluster.onAllMasterNodes(Request request) Runs therequestagainst all master nodes in the cluster.RedisCluster.onAllNodes(Request request) Runs therequestagainst all nodes in the cluster.Send the given command to the Redis server or cluster.Send the given command to the redis server or cluster.Method parameters in io.vertx.redis.client with type arguments of type RequestModifier and TypeMethodDescriptionSends a list of commands in a single IO operation, this prevents any inter twinning to happen from other client users.Sends a list of commands in a single IO operation, this prevents any inter twinning to happen from other client users.RedisCluster.groupByNodes(List<Request> requests) Groups therequestsinto aRequestGrouping, which contains: keyed requests: requests that include a key and it is therefore possible to determine to which master node they should be sent; all requests in each inner list in thekeyedcollection are guaranteed to be sent to the same master node; unkeyed requests: requests that do not include a key and it is therefore not possible to determine to which master node they should be sent. If any of therequestsincludes multiple keys that belong to different master nodes, the resulting future will fail.Constructor parameters in io.vertx.redis.client with type arguments of type RequestModifierConstructorDescriptionRequestGrouping(Collection<List<Request>> keyed, List<Request> unkeyed) RequestGrouping(Collection<List<Request>> keyed, List<Request> unkeyed) -
Uses of Request in io.vertx.rxjava3.redis.client
Methods in io.vertx.rxjava3.redis.client with parameters of type RequestModifier and TypeMethodDescriptionRedisCluster.onAllMasterNodes(Request request) Runs therequestagainst all master nodes in the cluster.RedisCluster.onAllNodes(Request request) Runs therequestagainst all nodes in the cluster.RedisCluster.rxOnAllMasterNodes(Request request) Runs therequestagainst all master nodes in the cluster.RedisCluster.rxOnAllNodes(Request request) Runs therequestagainst all nodes in the cluster.Send the given command to the Redis server or cluster.Send the given command to the redis server or cluster.Send the given command to the Redis server or cluster.Send the given command to the redis server or cluster.Method parameters in io.vertx.rxjava3.redis.client with type arguments of type RequestModifier and TypeMethodDescriptionSends a list of commands in a single IO operation, this prevents any inter twinning to happen from other client users.Sends a list of commands in a single IO operation, this prevents any inter twinning to happen from other client users.RedisCluster.groupByNodes(List<Request> requests) Groups therequestsinto aRequestGrouping, which contains: keyed requests: requests that include a key and it is therefore possible to determine to which master node they should be sent; all requests in each inner list in thekeyedcollection are guaranteed to be sent to the same master node; unkeyed requests: requests that do not include a key and it is therefore not possible to determine to which master node they should be sent. If any of therequestsincludes multiple keys that belong to different master nodes, the resulting future will fail.Sends a list of commands in a single IO operation, this prevents any inter twinning to happen from other client users.Sends a list of commands in a single IO operation, this prevents any inter twinning to happen from other client users.RedisCluster.rxGroupByNodes(List<Request> requests) Groups therequestsinto aRequestGrouping, which contains: keyed requests: requests that include a key and it is therefore possible to determine to which master node they should be sent; all requests in each inner list in thekeyedcollection are guaranteed to be sent to the same master node; unkeyed requests: requests that do not include a key and it is therefore not possible to determine to which master node they should be sent. If any of therequestsincludes multiple keys that belong to different master nodes, the resulting future will fail.