[Pkg-apache-commits] r1337 - in /trunk/apache2: changelog control

sf at alioth.debian.org sf at alioth.debian.org
Tue Jul 19 20:54:11 UTC 2011


Author: sf
Date: Tue Jul 19 20:54:10 2011
New Revision: 1337

URL: http://svn.debian.org/wsvn/pkg-apache/?sc=1&rev=1337
Log:
Improve description of the prefork MPM. Closes: #634242

Modified:
    trunk/apache2/changelog
    trunk/apache2/control

Modified: trunk/apache2/changelog
URL: http://svn.debian.org/wsvn/pkg-apache/trunk/apache2/changelog?rev=1337&op=diff
==============================================================================
--- trunk/apache2/changelog (original)
+++ trunk/apache2/changelog Tue Jul 19 20:54:10 2011
@@ -2,6 +2,7 @@
 
   * Reduce default KeepAliveTimeout from 15 to 5 seconds. 
   * Use "linux-any" in build-deps. Closes: #634709
+  * Improve description of the prefork MPM. Closes: #634242
 
  -- Stefan Fritsch <sf at debian.org>  Sun, 22 May 2011 22:01:06 +0200
 

Modified: trunk/apache2/control
URL: http://svn.debian.org/wsvn/pkg-apache/trunk/apache2/control?rev=1337&op=diff
==============================================================================
--- trunk/apache2/control (original)
+++ trunk/apache2/control Tue Jul 19 20:54:10 2011
@@ -63,13 +63,13 @@
  Each Apache Multi-Processing Module provides a different "flavor" of
  web server binary, compiled with a different processing model.
  .
- The prefork MPM provides a non-threaded, pre-forking implementation
- that handles requests in a manner similar to Apache 1.3. It is not as
- fast as threaded models, but is considered to be more stable. It is
- appropriate for sites that need to maintain compatibility with
- non-thread-safe libraries, and is the best MPM for isolating each
- request, so that a problem with a single request will not affect any
- other.
+ The prefork MPM provides a non-threaded implementation using a variable
+ number of processes where each process handles only one connection
+ at the same time. It is not as fast as threaded models, but is considered to
+ be more stable. It is appropriate for sites that need to maintain
+ compatibility with non-thread-safe libraries, and is the best MPM for
+ isolating each request, so that a problem with a single request will not
+ affect any other.
 
 Package: apache2-mpm-event
 Architecture: any




More information about the Pkg-apache-commits mailing list