如何为owin控制台主机配置最大线程数

时间:2015-01-21 11:26:20

标签: c# asp.net threadpool asp.net-web-api owin

我正在使用控制台主机来运行web api项目,我需要能够限制应用程序从操作系统请求的线程数,目前我在服务器上投入的负载越来越多,它越来越多它从我的机器获得的资源。

到目前为止我已经

    static void Main()
    {
        var baseAddress = "http://localhost:9001/"; 

        // Start OWIN host 
        using (WebApp.Start<StartUp>(baseAddress)) {
            Console.ReadLine(); 

        }

    }

1 个答案:

答案 0 :(得分:1)

我设法最终只想设置.net threadpool max threads setting