iis7 增加每个工作进程的线程/并发请求数

发布于 2024-08-02 00:24:43 字数 66 浏览 2 评论 0原文

如何增加 IIS7 上每个工作进程的线程/并发请求数?

我不想增加创建网络花园的进程数量(目前)。

How can I increase the number of threads/concurrent requests per working process on IIS7?

I don't want to increase the number of processes to create a web garden (for now).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝眼泪 2024-08-09 00:24:43

我找到了它:

 <system.web>
        <applicationPool maxConcurrentRequestsPerCPU="12" maxConcurrentThreadsPerCPU="0" requestQueueLimit="5000"/>
 </system.web>

http://blogs.msdn.com/tmarq/archive/2007/07/21/asp-net-thread-usage-on-iis-7-0-and-6-0 .aspx
http://msdn.microsoft.com/en-us/库/dd560842(VS.100).aspx

I found it:

 <system.web>
        <applicationPool maxConcurrentRequestsPerCPU="12" maxConcurrentThreadsPerCPU="0" requestQueueLimit="5000"/>
 </system.web>

http://blogs.msdn.com/tmarq/archive/2007/07/21/asp-net-thread-usage-on-iis-7-0-and-6-0.aspx
http://msdn.microsoft.com/en-us/library/dd560842(VS.100).aspx

失去的东西太少 2024-08-09 00:24:43

查看 http://iiistuner.codeplex.com/ 它解决了我们有关设置这些数字的所有问题。 它基本上一键修复所有奇怪和难以找到的设置。

Check out http://iistuner.codeplex.com/ it solved all of our problems regarding setting these numbers. It basically fixes all wierd and hard to find settings with one click.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文