From 924d5136e4d50f024ccf5633a300212daf0a0548 Mon Sep 17 00:00:00 2001
From: Ryan Bloom
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.
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.