From: markt Date: Fri, 20 Feb 2009 23:15:52 +0000 (+0000) Subject: Doc updated - ported form tc6.0.x X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=553f8d3120a7f1da2becb2fc686b25deb15ee8c4;p=tomcat7.0 Doc updated - ported form tc6.0.x git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@746413 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/webapps/docs/apr.xml b/webapps/docs/apr.xml index f539a229c..eb9e690a3 100644 --- a/webapps/docs/apr.xml +++ b/webapps/docs/apr.xml @@ -181,6 +181,13 @@ 8192 keepalive connections.

+ +

Number of threads used to poll kept alive connections. On Windows the + default is chosen so that the sockets managed by each thread is + less than 1024. For Linux the default is 1. Changing the default on + Windows is likely to have a negative performance impact.

+
+

Use kernel level sendfile for certain static files. The default value is true.

@@ -189,11 +196,18 @@

Amount of sockets that the poller responsible for sending static files asynchronously can hold at a given time. Extra connections will be closed right away without any data being sent (resulting in a zero length file on the client side). Note that in most cases, sendfile is a call - that will return right away (being taken care of "synchonously" by the kernel), and the sendfile + that will return right away (being taken care of "synchronously" by the kernel), and the sendfile poller will not be used, so the amount of static files which can be sent concurrently is much larger than the specified amount. The default value is 1024.

+ +

Number of threads used service sendfile sockets. On Windows the + default is chosen so that the sockets managed by each thread is + less than 1024. For Linux the default is 1. Changing the default on + Windows is likely to have a negative performance impact.

+
+