Normally the server closes the HTTP connection after completion of each request. With Keep-Alive function you can use the same TCP connection for all the HTTP requests. Benefit of Keep-Alive functionality is that you don’t have to open new connection for every request.
Is it good to enable...