我正在使用控制台主机来运行web api项目,我需要能够限制应用程序从操作系统请求的线程数,目前我在服务器上投入的负载越来越多,它越来越多它从我的机器获得的资源。
到目前为止我已经
了 static void Main()
{
var baseAddress = "http://localhost:9001/";
// Start OWIN host
using (WebApp.Start<StartUp>(baseAddress)) {
Console.ReadLine();
}
}
答案 0 :(得分:1)
我设法最终只想设置.net threadpool max threads setting