I'd like to make a multithreaded test and start only one worker process.
Can anybody help me with the proper configuration?
<IfModule worker.c>
StartServers 1
MinSpareThreads 25
MaxSpareThreads 75
ThreadLimit 64
MaxClients 150
ThreadsPerChild 25
MaxRequestsPerChild 10000
</IfModule>
The apache compilation options are:
Server MPM: Prefork
threaded: no
forked: yes (variable process count)
Server compiled with....
-D APACHE_MPM_DIR="server/mpm/prefork"