Is it possible for web servers, when dealing with a single machine, to process and respond to multiple requests to the same domain asynchronously? The requests are done with Javascript.
How do servers even work in such a case? Does it process and send a single request at a time? For example, if I wanted to load five different pages from a web server at the same time, does page 2 have to wait until page 1 is done loading on my machine? Or can page 1 and 2 be loaded at the same time?
Thanks.