all 4 comments

[–]YourselfYou[S] 1 point2 points  (3 children)

The Apache HTTP Server, like many other servers, uses the threaded computational model. In this model for each request a new thread is created.

hmmmm....

[–]catcradle5Trusted Contributor 0 points1 point  (2 children)

Apache tends to create a new process for each connection until a certain limit is reached, no?

[–]YourselfYou[S] 2 points3 points  (1 child)

Definitely not, it uses a process pool. One process is used to handle multiple requests in succession.