Uses of Class
io.vertx.redis.client.RequestGrouping
-
Packages that use RequestGrouping Package Description io.vertx.reactivex.redis.client io.vertx.redis.client io.vertx.rxjava3.redis.client -
-
Uses of RequestGrouping in io.vertx.reactivex.redis.client
Methods in io.vertx.reactivex.redis.client that return types with arguments of type RequestGrouping Modifier and Type Method Description Future<RequestGrouping>
RedisCluster. groupByNodes(List<Request> requests)
Groups therequests
into 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 thekeyed
collection 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 therequests
includes multiple keys that belong to different master nodes, the resulting future will fail.Single<RequestGrouping>
RedisCluster. rxGroupByNodes(List<Request> requests)
Groups therequests
into 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 thekeyed
collection 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 therequests
includes multiple keys that belong to different master nodes, the resulting future will fail. -
Uses of RequestGrouping in io.vertx.redis.client
Methods in io.vertx.redis.client that return types with arguments of type RequestGrouping Modifier and Type Method Description Future<RequestGrouping>
RedisCluster. groupByNodes(List<Request> requests)
Groups therequests
into 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 thekeyed
collection 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 therequests
includes multiple keys that belong to different master nodes, the resulting future will fail. -
Uses of RequestGrouping in io.vertx.rxjava3.redis.client
Methods in io.vertx.rxjava3.redis.client that return types with arguments of type RequestGrouping Modifier and Type Method Description Single<RequestGrouping>
RedisCluster. groupByNodes(List<Request> requests)
Groups therequests
into 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 thekeyed
collection 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 therequests
includes multiple keys that belong to different master nodes, the resulting future will fail.Single<RequestGrouping>
RedisCluster. rxGroupByNodes(List<Request> requests)
Groups therequests
into 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 thekeyed
collection 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 therequests
includes multiple keys that belong to different master nodes, the resulting future will fail.
-