Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 70EE0D0F4 for ; Thu, 9 Aug 2012 07:32:50 +0000 (UTC) Received: (qmail 22001 invoked by uid 500); 9 Aug 2012 07:32:50 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 21826 invoked by uid 500); 9 Aug 2012 07:32:50 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 21803 invoked by uid 99); 9 Aug 2012 07:32:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Aug 2012 07:32:49 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Aug 2012 07:32:48 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id E337323888FD; Thu, 9 Aug 2012 07:32:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1371058 - in /httpd/httpd/trunk/docs/manual/mod: mod_cache.xml mod_proxy_ajp.xml Date: Thu, 09 Aug 2012 07:32:04 -0000 To: cvs@httpd.apache.org From: humbedooh@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120809073204.E337323888FD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: humbedooh Date: Thu Aug 9 07:32:04 2012 New Revision: 1371058 URL: http://svn.apache.org/viewvc?rev=1371058&view=rev Log: typo fixes Modified: httpd/httpd/trunk/docs/manual/mod/mod_cache.xml httpd/httpd/trunk/docs/manual/mod/mod_proxy_ajp.xml Modified: httpd/httpd/trunk/docs/manual/mod/mod_cache.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_cache.xml?rev=1371058&r1=1371057&r2=1371058&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_cache.xml (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_cache.xml Thu Aug 9 07:32:04 2012 @@ -178,7 +178,7 @@ LoadModule cache_module modules/mod_cach becomes stale, and the time the stale entity is fully refreshed. On a busy server, a significant number of requests might arrive during this time, and cause a thundering herd of requests to strike the backend - suddenly and unpredicably.

+ suddenly and unpredictably.

To keep the thundering herd at bay, the CacheLock directive can be used to define a directory in which locks are created for URLs in flight. The lock is used as a hint Modified: httpd/httpd/trunk/docs/manual/mod/mod_proxy_ajp.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_proxy_ajp.xml?rev=1371058&r1=1371057&r2=1371058&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_proxy_ajp.xml (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_proxy_ajp.xml Thu Aug 9 07:32:04 2012 @@ -120,10 +120,10 @@ ProxyPassReverse /apps/foo http://www.ex the connection can be in one of the following states:

  • Idle
    No request is being handled over this connection.
  • -
  • Assigned
    The connecton is handling a specific request.
  • +
  • Assigned
    The connection is handling a specific request.

Once a connection is assigned to handle a particular request, the basic - request informaton (e.g. HTTP headers, etc) is sent over the connection in + request information (e.g. HTTP headers, etc) is sent over the connection in a highly condensed form (e.g. common strings are encoded as integers). Details of that format are below in Request Packet Structure. If there is a body to the request (content-length > 0), that is sent in a @@ -139,7 +139,7 @@ ProxyPassReverse /apps/foo http://www.ex been transferred yet. This is necessary because the packets have a fixed maximum size and arbitrary amounts of data can be included the body of a request (for uploaded files, for example). (Note: this is unrelated to - HTTP chunked tranfer). + HTTP chunked transfer).

  • END_RESPONSE
    Finish the request-handling cycle.
  • Each message is accompanied by a differently formatted packet of data. @@ -277,7 +277,7 @@ ProxyPassReverse /apps/foo http://www.ex

    To ensure some basic security, the container will only actually do the Shutdown if the request comes from the same machine on which it's hosted.

    -

    The first Data packet is send immediatly after the +

    The first Data packet is send immediately after the Forward Request by the web server.

    The servlet container can send the following types of messages to the webserver:

    @@ -578,7 +578,7 @@ AJP13_GET_BODY_CHUNK :=
    Get Body Chunk

    The container asks for more data from the request (If the body was too large to fit in the first packet sent over or when the request is - chuncked). The server will send a body packet back with an amount of data + chunked). The server will send a body packet back with an amount of data which is the minimum of the request_length, the maximum send body size (8186 (8 Kbytes - 6)), and the number of bytes actually left to send from the request body.