I am optimizing my web server settings to handle a large number of concurrent users, and one of the problems I encounter is the decision to disable HTTP Keep-Alive.
I use CDN for all the images on the site, so when my HTML page is requested, I upload about 5 files (js, css, etc.) on the first load ... and then only HTML for each subsequent download.
Another, then the only thing I have is an HTTP POST update invoke for every second (as a result, JSON is usually less than 1 KB).
So, with these limitations - do you think disabling HTTP Keep-Alive on the server would be a good idea? Could this improve the number of concurrent user servers?
(By the way, I reduced KeepAliveTimeout / ConnectionTimeout to 15 seconds in IIS 7.5 settings)
source
share