"Magen, Carmel" <[EMAIL PROTECTED]> writes: > Hi! > I'm new to the Apache and don't find my way in the code. > I'm looking for the methods Apache uses to handle many multiple parallel > requests. Can you point me in which module or file I should look for that?
A separate thread or process is used for each parallel request, so you won't find any sort of multiplexing code in the server. If you look at the MPMs (server/mpm/prefork, server/mpm/worker, etc.) you'll see the mechanisms by which multiple threads or processes are created to handle parallel requests. -- Jeff Trawick | [EMAIL PROTECTED] Born in Roswell... married an alien...
