could anyone please let me know what is the importance of Idle worker in Apache stats, I see many of them (is it possible to reduce its timeout)

Thanks

link|improve this question
feedback

1 Answer

Apache configuration is sometimes like this: it creates a lot of "workers" that are idle=waiting for an incoming connexion. As soon as someone makes a request and the web server handles it, it takes one "free" worker = "idle worker" and gives it the connexion. So, depending on your configuration, your may have a "fixed" number of workers, or a variable number of workers in what's called a pool ("a pool of workers"). Checkout Apache MPM

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.