_______ is a technique used in RESTful APIs to combine multiple requests into a single request.

  • Aggregation
  • Batching
  • Merging
  • Request Chaining
Batching is a technique used in RESTful APIs where multiple requests are combined into a single request to improve efficiency and reduce overhead. This is particularly useful when a client needs to make several related requests to the server, as it reduces the number of round-trips required between the client and the server, thereby improving performance.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *