Reusing a connection uses HTTP Keep-alive, which is an HTTP / 1.1 feature. Using HTTP Keep-alive, one TCP connection is used to process several HTTP requests in sequence, so one of them saves time to open a new TCP connection for each request. Each HTTP request in itself is independent again, so authentication and the like will not be reused automatically.
source
share