Httpd KeepAlive: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 12: | Line 12: | ||
"KeepAlive" specifies whether or not to allow [[HTTP Persistent Connections#Overview|persistent connections]] (more than one request per connection). Set to "Off" to deactivate. | "KeepAlive" specifies whether or not to allow [[HTTP Persistent Connections#Overview|persistent connections]] (more than one request per connection). Set to "Off" to deactivate. | ||
<pre> | |||
... | ... | ||
KeepAlive Off | KeepAlive Off | ||
... | ... | ||
</pre> | |||
Setting KeepAliveTimeout to a high value may cause performance problems in heavily loaded servers. The higher the timeout, the more server processes will be kept occupied waiting on connections with idle clients. | Setting [[Httpd KeepAliveTimeout#Overview|KeepAliveTimeout]] to a high value may cause performance problems in heavily loaded servers. The higher the timeout, the more server processes will be kept occupied waiting on connections with idle clients. |
Revision as of 17:11, 23 November 2016
External
Internal
Overview
"KeepAlive" specifies whether or not to allow persistent connections (more than one request per connection). Set to "Off" to deactivate.
... KeepAlive Off ...
Setting KeepAliveTimeout to a high value may cause performance problems in heavily loaded servers. The higher the timeout, the more server processes will be kept occupied waiting on connections with idle clients.