From 924d5136e4d50f024ccf5633a300212daf0a0548 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Thu, 21 Dec 2000 15:41:16 +0000 Subject: [PATCH] Fill out some docs for the MPMs. The content is there, but the formatting could probably use some work. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87494 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mpm.html | 26 ++++++++++++++++++++++---- docs/manual/mpm.html.en | 26 ++++++++++++++++++++++---- 2 files changed, 44 insertions(+), 8 deletions(-) diff --git a/docs/manual/mpm.html b/docs/manual/mpm.html index b755b6451b..4d31d81383 100644 --- a/docs/manual/mpm.html +++ b/docs/manual/mpm.html @@ -58,12 +58,30 @@ The main difference is that one and only one MPM must be loaded into the server at any time. The list of available MPMs appears on the module index page.

- +

Choosing an MPM

+

MPMs must be chosen during configuration, and compiled into the server. +Compilers are capable of optimizing a lot of functions if threads are used, +but only if they know that threads are being used. Because some MPMs use +threads on Unix and others don't, Apache will always perform better if the +MPM is chosen at configuration time and built into Apache.

+

To actually choose the desired MPM, use the argument --with-mpm= +NAME with the ./configure script. NAME is the name of +the desired MPM.

+ +

Once the server has been compiled, it is possible to determine which +MPM was chosen by using ./httpd -l. This command will list +every module that is compiled into the server, including the MPM.

+ +

MPM Defaults

+ + diff --git a/docs/manual/mpm.html.en b/docs/manual/mpm.html.en index b755b6451b..4d31d81383 100644 --- a/docs/manual/mpm.html.en +++ b/docs/manual/mpm.html.en @@ -58,12 +58,30 @@ The main difference is that one and only one MPM must be loaded into the server at any time. The list of available MPMs appears on the module index page.

- +

Choosing an MPM

+

MPMs must be chosen during configuration, and compiled into the server. +Compilers are capable of optimizing a lot of functions if threads are used, +but only if they know that threads are being used. Because some MPMs use +threads on Unix and others don't, Apache will always perform better if the +MPM is chosen at configuration time and built into Apache.

+

To actually choose the desired MPM, use the argument --with-mpm= +NAME with the ./configure script. NAME is the name of +the desired MPM.

+ +

Once the server has been compiled, it is possible to determine which +MPM was chosen by using ./httpd -l. This command will list +every module that is compiled into the server, including the MPM.

+ +

MPM Defaults

+ + -- 2.50.1