Class RequestGrouping

java.lang.Object
io.vertx.redis.client.RequestGrouping

public class RequestGrouping extends Object
See Also:
  • Constructor Details

  • Method Details

    • getKeyed

      public Collection<List<Request>> getKeyed()
      Returns a collection of request groups such that all requests in each group are guaranteed to be sent to the same master node.

      Does not include any request that doesn't specify a key; use getUnkeyed() to get those.

    • getUnkeyed

      public List<Request> getUnkeyed()
      Returns a collection of requests that do not specify a key and would therefore be executed on random node.