0

我们开发了 asp.net(.net 4 框架)Web 应用程序并部署在 Windows Server 2008 上的 IIS 7 中。但是当我们在我的本地机器(即 windowsxp 机器)上的 IIS 5.1 服务器上托管 Web 应用程序时,它似乎工作得更快比部署在 Windows Sever 2008 机器上的一个。

最有可能同时访问 Web 应用程序的用户最多只有大约 50 个......我是否需要更改 IIS7 上的应用程序池中的任何设置。

部署时,我从未更改过 Windows Server 2008 上 IIS 7 中的任何设置。我已使用 Visual Studio 2010 支持进行部署。

我不知道它为什么会这样?

那么,您能否告诉我在 IIS 7 和 Windows Server 2008 中我需要更改哪些基本内容以加速我的 Web 应用程序...

4

1 回答 1

1

Increase the worker process number in application pool such that it matches the processor cores (tetra core / penta core) in your windows-server machine so that it could make use of server effectively. But keep in mind, you have to choose SessionState other than In-Proc in your application if you increase your worker process number.

于 2013-01-04T06:58:07.663 回答