batch http requests
Does anyone know a standard way to batch http requests? Meaning - sending multiple http atomic requests in one round trip? We need such mechanism in our REST API implementation for performance reasons. This kind of mechanism can reduce dramatically the number of round trips that the client needs to perform to consume the API. Thanks in advance, Shay Define a new resource that contains the data the client wants. See http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven#comment-743 There's an official HTTP way to do that which is called HTTP Pipelining . But you may have more