Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@www.apache.org Received: (qmail 99862 invoked from network); 1 Aug 2005 13:26:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 1 Aug 2005 13:26:19 -0000 Received: (qmail 83135 invoked by uid 500); 1 Aug 2005 13:25:44 -0000 Delivered-To: apmail-jakarta-tomcat-dev-archive@jakarta.apache.org Received: (qmail 82986 invoked by uid 500); 1 Aug 2005 13:25:43 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Tomcat Developers List" Reply-To: "Tomcat Developers List" Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 82933 invoked by uid 500); 1 Aug 2005 13:25:43 -0000 Received: (qmail 82909 invoked by uid 99); 1 Aug 2005 13:25:42 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 01 Aug 2005 06:25:27 -0700 Received: (qmail 99529 invoked by uid 1135); 1 Aug 2005 13:25:25 -0000 Date: 1 Aug 2005 13:25:25 -0000 Message-ID: <20050801132525.99528.qmail@minotaur.apache.org> From: remm@apache.org To: jakarta-tomcat-catalina-cvs@apache.org Subject: cvs commit: jakarta-tomcat-catalina/webapps/docs apr.xml X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N remm 2005/08/01 06:25:25 Modified: webapps/docs apr.xml Log: - Add paragraphs on how each connector benefits from APR. Revision Changes Path 1.8 +22 -0 jakarta-tomcat-catalina/webapps/docs/apr.xml Index: apr.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/apr.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- apr.xml 21 Jul 2005 13:24:53 -0000 1.7 +++ apr.xml 1 Aug 2005 13:25:25 -0000 1.8 @@ -109,6 +109,12 @@

+ When APR is enabled, the HTTP connector will use sendfile for hadling large static files (all such + files will be sent ansychronously using high performance kernel level calls), and will use + a socket poller for keepalive, increasing scalability of the server. +

+ +

The following attributes are supported in the HTTP APR connector in addition to the ones supported in the regular HTTP connector:

@@ -155,6 +161,14 @@

+ When APR is enabled, the HTTPS connector will use a socket poller for keepalive, increasing + scalability of the server. It also uses OpenSSL, which may be more optimized than JSSE depending + on the processor being used, and can be complemented with many commercial accelerator components. + Unlike the HTTP connector, the HTTPS connector cannot use sendfile to optimize static file + processing. +

+ +

The HTTPS APR connector has the same basic attributes than the HTTP APR connector, but adds OpenSSL specific ones. For the full details on using OpenSSL, please refer to OpenSSL documentations and the many books available for it (see the Official OpenSSL @@ -218,6 +232,14 @@

+ When APR is enabled, the AJP connector will use a socket poller for keepalive, increasing + scalability of the server. As AJP is designed around a pool of persistent (or almost + persistent) connections, this will reduce significantly the amount of processing threads + needed by Tomcat. Unlike the HTTP connector, the AJP connector cannot use sendfile to optimize + static file processing. +

+ +

The following attributes are supported in the AJP APR connector in addition to the ones supported in the regular AJP connector:

--------------------------------------------------------------------- To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org