home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F277714_mpm.xml < prev    next >
Extensible Markup Language  |  2004-04-17  |  5KB  |  116 lines

  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
  3. <?xml-stylesheet type="text/xsl" href="./style/manual.en.xsl"?>
  4. <!-- $Revision: 1.2.2.7 $ -->
  5.  
  6. <!--
  7.  Copyright 2002-2004 The Apache Software Foundation
  8.  
  9.  Licensed under the Apache License, Version 2.0 (the "License");
  10.  you may not use this file except in compliance with the License.
  11.  You may obtain a copy of the License at
  12.  
  13.      http://www.apache.org/licenses/LICENSE-2.0
  14.  
  15.  Unless required by applicable law or agreed to in writing, software
  16.  distributed under the License is distributed on an "AS IS" BASIS,
  17.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18.  See the License for the specific language governing permissions and
  19.  limitations under the License.
  20. -->
  21.  
  22. <manualpage metafile="mpm.xml.meta">
  23.  
  24.   <title>Multi-Processing Modules (MPMs)</title>
  25.  
  26. <summary>
  27. <p>This document describes what a Multi-Processing Module is and
  28. how they are used by the Apache HTTP Server.</p>
  29. </summary>
  30.  
  31. <section id="introduction"><title>Introduction</title>
  32.  
  33.     <p>The Apache HTTP Server is designed to be a powerful and
  34.     flexible web server that can work on a very wide variety of
  35.     platforms in a range of different environments. Different
  36.     platforms and different environments often require different
  37.     features, or may have different ways of implementing the same
  38.     feature most efficiently. Apache has always accommodated a wide
  39.     variety of environments through its modular design. This design
  40.     allows the webmaster to choose which features will be included
  41.     in the server by selecting which modules to load either at
  42.     compile-time or at run-time.</p>
  43.  
  44.     <p>Apache 2.0 extends this modular design to the most basic
  45.     functions of a web server. The server ships with a selection of
  46.     Multi-Processing Modules (MPMs) which are responsible for
  47.     binding to network ports on the machine, accepting requests,
  48.     and dispatching children to handle the requests.</p>
  49.  
  50.     <p>Extending the modular design to this level of the server
  51.     allows two important benefits:</p>
  52.  
  53.     <ul>
  54.       <li>Apache can more cleanly and efficiently support a wide
  55.       variety of operating systems. In particular, the Windows
  56.       version of Apache is now much more efficient, since
  57.       <module>mpm_winnt</module> can use native
  58.       networking features in place of the POSIX layer used in
  59.       Apache 1.3. This benefit also extends to other operating
  60.       systems that implement specialized MPMs.</li>
  61.  
  62.       <li>The server can be better customized for the needs of the
  63.       particular site. For example, sites that need a great deal of
  64.       scalability can choose to use a threaded MPM like 
  65.       <module>worker</module>, while sites requiring
  66.       stability or compatibility with older software can use a
  67.       <module>prefork</module>. In addition,
  68.       special features like serving different hosts under different
  69.       userids (<module>perchild</module>) can be
  70.       provided.</li>
  71.     </ul>
  72.  
  73.     <p>At the user level, MPMs appear much like other Apache
  74.     modules. The main difference is that one and only one MPM must
  75.     be loaded into the server at any time. The list of available
  76.     MPMs appears on the <a href="mod/">module index page</a>.</p>
  77.  
  78. </section>
  79.  
  80. <section id="choosing"><title>Choosing an MPM</title>
  81.  
  82.     <p>MPMs must be chosen during configuration, and compiled into
  83.     the server. Compilers are capable of optimizing a lot of
  84.     functions if threads are used, but only if they know that
  85.     threads are being used. Because some MPMs use threads on Unix
  86.     and others don't, Apache will always perform better if the MPM
  87.     is chosen at configuration time and built into Apache.</p>
  88.  
  89.     <p>To actually choose the desired MPM, use the argument
  90.     --with-mpm= <em>NAME</em> with the ./configure script.
  91.     <em>NAME</em> is the name of the desired MPM.</p>
  92.  
  93.     <p>Once the server has been compiled, it is possible to
  94.     determine which MPM was chosen by using <code>./httpd
  95.     -l</code>. This command will list every module that is compiled
  96.     into the server, including the MPM.</p>
  97. </section>
  98.  
  99. <section id="defaults"><title>MPM Defaults</title>
  100.  
  101. <p>The following table lists the default MPMs for various operating
  102. systems.  This will be the MPM selected if you do not make another
  103. choice at compile-time.</p>
  104.  
  105. <table>
  106. <columnspec><column width=".2"/><column width=".2"/></columnspec>
  107. <tr><td>BeOS</td><td><module>beos</module></td></tr>
  108. <tr><td>Netware</td><td><module>mpm_netware</module></td></tr>
  109. <tr><td>OS/2</td><td><module>mpmt_os2</module></td></tr>
  110. <tr><td>Unix</td><td><module>prefork</module></td></tr>
  111. <tr><td>Windows</td><td><module>mpm_winnt</module></td></tr>
  112. </table>
  113. </section>
  114.  
  115. </manualpage>
  116.