When a user browses the home page, does the server generate a process?
This post was last edited by lumengabc on 2013-06-17 11:04:53
Title.
or 10 different IPs simultaneously access the home page of the site, the server will generate 10 processes? 1 process 10 threads?
Who can tell me what kind of situation this is? Or are there related books (concepts such as high concurrent server Max connections thread) recommended?
Share to:
------Solution--------------------
Right!
CGI-mode servers generate 10 of processes
A server with a modular approach will generate 10 threads
------Solution--------------------
10 Processes N Threads.
------Solution--------------------
References:
Quote: References:
Right!
CGI-mode servers generate 10 of processes
A server with a modular approach will generate 10 threads
If 10,000 users (or more) at the same time browse the homepage of the site, generate 10,000 processes, the server is not hanging it?
Apache has a process pool that exceeds the pool limit and other accesses will wait.