Worker and Prefork

ARUN Post in HTTPD
0

Worker MPM uses multiple child processes. It’s multi-threaded within each child and each thread handles a single connection.

Worker is fast and highly scalable and the memory footprint is comparatively low. It’s well suited for multiple processors. On the other hand, worker is less tolerant to faulty modules and faulty threads can affect all the threads in a child process.

« Prev: :Next »

Leave a Reply

You must be logged in to post a comment.