home *** CD-ROM | disk | FTP | other *** search
/ PC World 2004 May / PCWorld_2004-05_cd.bin / komunikace / apache / apache_2.0.48-win32-x86-no_ssl.msi / Data.Cab / F252245_mpm.xml < prev    next >
Extensible Markup Language  |  2003-07-12  |  4KB  |  98 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. <manualpage metafile="mpm.xml.meta">
  5.  
  6.   <title>Multi-Processing Modules (MPMs)</title>
  7.  
  8. <summary>
  9. <p>This document describes what a Multi-Processing Module is and
  10. how they are used by the Apache HTTP Server.</p>
  11. </summary>
  12.  
  13. <section id="introduction"><title>Introduction</title>
  14.  
  15.     <p>The Apache HTTP Server is designed to be a powerful and
  16.     flexible web server that can work on a very wide variety of
  17.     platforms in a range of different environments. Different
  18.     platforms and different environments often require different
  19.     features, or may have different ways of implementing the same
  20.     feature most efficiently. Apache has always accommodated a wide
  21.     variety of environments through its modular design. This design
  22.     allows the webmaster to choose which features will be included
  23.     in the server by selecting which modules to load either at
  24.     compile-time or at run-time.</p>
  25.  
  26.     <p>Apache 2.0 extends this modular design to the most basic
  27.     functions of a web server. The server ships with a selection of
  28.     Multi-Processing Modules (MPMs) which are responsible for
  29.     binding to network ports on the machine, accepting requests,
  30.     and dispatching children to handle the requests.</p>
  31.  
  32.     <p>Extending the modular design to this level of the server
  33.     allows two important benefits:</p>
  34.  
  35.     <ul>
  36.       <li>Apache can more cleanly and efficiently support a wide
  37.       variety of operating systems. In particular, the Windows
  38.       version of Apache is now much more efficient, since
  39.       <module>mpm_winnt</module> can use native
  40.       networking features in place of the POSIX layer used in
  41.       Apache 1.3. This benefit also extends to other operating
  42.       systems that implement specialized MPMs.</li>
  43.  
  44.       <li>The server can be better customized for the needs of the
  45.       particular site. For example, sites that need a great deal of
  46.       scalability can choose to use a threaded MPM like 
  47.       <module>worker</module>, while sites requiring
  48.       stability or compatibility with older software can use a
  49.       <module>prefork</module>. In addition,
  50.       special features like serving different hosts under different
  51.       userids (<module>perchild</module>) can be
  52.       provided.</li>
  53.     </ul>
  54.  
  55.     <p>At the user level, MPMs appear much like other Apache
  56.     modules. The main difference is that one and only one MPM must
  57.     be loaded into the server at any time. The list of available
  58.     MPMs appears on the <a href="mod/">module index page</a>.</p>
  59.  
  60. </section>
  61.  
  62. <section id="choosing"><title>Choosing an MPM</title>
  63.  
  64.     <p>MPMs must be chosen during configuration, and compiled into
  65.     the server. Compilers are capable of optimizing a lot of
  66.     functions if threads are used, but only if they know that
  67.     threads are being used. Because some MPMs use threads on Unix
  68.     and others don't, Apache will always perform better if the MPM
  69.     is chosen at configuration time and built into Apache.</p>
  70.  
  71.     <p>To actually choose the desired MPM, use the argument
  72.     --with-mpm= <em>NAME</em> with the ./configure script.
  73.     <em>NAME</em> is the name of the desired MPM.</p>
  74.  
  75.     <p>Once the server has been compiled, it is possible to
  76.     determine which MPM was chosen by using <code>./httpd
  77.     -l</code>. This command will list every module that is compiled
  78.     into the server, including the MPM.</p>
  79. </section>
  80.  
  81. <section id="defaults"><title>MPM Defaults</title>
  82.  
  83. <p>The following table lists the default MPMs for various operating
  84. systems.  This will be the MPM selected if you do not make another
  85. choice at compile-time.</p>
  86.  
  87. <table>
  88. <columnspec><column width=".2"/><column width=".2"/></columnspec>
  89. <tr><td>BeOS</td><td><module>beos</module></td></tr>
  90. <tr><td>Netware</td><td><module>mpm_netware</module></td></tr>
  91. <tr><td>OS/2</td><td><module>mpmt_os2</module></td></tr>
  92. <tr><td>Unix</td><td><module>prefork</module></td></tr>
  93. <tr><td>Windows</td><td><module>mpm_winnt</module></td></tr>
  94. </table>
  95. </section>
  96.  
  97. </manualpage>
  98.