Each request to a web server is taking 40 ms to complete and 35ms of that 40ms is database I/O that can be done asynchronously.
Which of the following operations will you use if you want that 35 ms per request to get freed up to handle other requests?
Options
- Non-blocking asynchronous operations
- Blocking asynchronous operations
- Non-blocking synchronous operations
- Blocking synchronous operations