I'm trying to understand the terminology I see in other posts regarding synchronous and asynchronous web requests, so, in the below scenario:
The client sends a request synchronously to the server (meaning the client is blocked until it receives a response), and the server formulates the response asynchronously (it starts a new thread per request and creates the response on that thread).
Would the request itself be synchronous, but the handling of the request asynchronous?