MPM stands for Multi Processing Module and this module implements a non-threaded pre-forking web server.
MPM isolate each request , so single request wont effect any other request.
MaxRequestWorkers is proportional to Physical RAM. More value more requests so make sure we got more RAM available for that server.
=====How it Works
There is a process named as "Control Process" and it is responsible...