multithreading iis7 增加每个工作进程的线程数/并发请求数
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/1293865/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
iis7 increase number of threads/concurrent requests per working process
提问by rjlopes
How can I increase the number of threads/concurrent requests per working process on IIS7?
如何在 IIS7 上增加每个工作进程的线程/并发请求数?
I don't want to increase the number of processes to create a web garden (for now).
我不想增加进程数来创建网络花园(目前)。
回答by rjlopes
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.aspxhttp://msdn.microsoft.com/en-us/library/dd560842(VS.100).aspx
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
回答by Johan Wikstr?m
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.
查看http://iistuner.codeplex.com/它解决了我们关于设置这些数字的所有问题。它基本上可以一键修复所有奇怪且难以找到的设置。