_______ 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.
Loading...
Related Quiz
- Imagine you're working on a social media platform where users can follow each other. How would you design SQL queries to retrieve the list of followers for a given user and to find mutual followers between two users?
- ___________ allows objects of different classes to be treated as objects of a common superclass.
- You're working on a project where the input data is nearly sorted. Which sorting algorithm would you choose and why?
- What is the default branch name in Git?
- The ___________ pattern in OOP allows objects to communicate without knowing each others classes.