1

I am confused about the worker process. Consider if i have five web applications deployed on IIS.

And all the five web applications are handling requests from different system. Now will there be only five w3wp.exe process or is there a chance for one w3wp.exe process to handle more than one web applications ?

I guess two w3wp.exe process can share the requests of single web application.. but will the web applications share a single w3wp.exe ?

-Rahul

4

1 回答 1

1

简化答案:每个“应用程序池”对应一个实例w3wp.exe(打开 IIS 管理器并打开“应用程序池”视图)。

“Web 应用程序”与网站脱节(尽管每个网站根目录都是一个“Web 应用程序”)并且仅存在于一个应用程序池中。因此,一个w3wp.exe实例可以托管多个网站,但一个网站的子应用程序也可能分布在多个w3wp.exe实例之间。

...那是在进入“网络农场”流程的工作之前。

w3wp.exe但简而言之,您认为两个实例共享一个 IIS“Web 应用程序”的猜测是错误的。

于 2015-04-16T06:46:35.483 回答