mpm_winnt_module> MaxConnectionsPerChild 8000根据上述配置,每8000次请求在服务器上创建一个新进程While creating the new process, If any requests comes to web server will it accept or not?
3.If the request hit reached 8000, If any requ
web服务器(WS) (如apache2或nginix (或容器,如tomcat(TC))将创建一个新进程来处理传入的请求。我担心的是支持大量并行用户(比如20K+并行用户)的服务器。我认为负载平衡发生在web服务器的另一端(如果它用于前端Tomcat等)。因此,从理论上讲,一个web服务器应该接受所有(20K+)传入请求,然后才能将负载分配给支持它的其他服务器。因此,问题是: Web (WS)是在单个进程<