我们有一堆使用 HttpSys 与自托管 http-listener 一起运行的服务。
从我们可以看到,HttpSys 只会启动 28 个并发请求(至少在我们的 4 核开发人员工作站上)。我们如何增加它?
我们尝试调整 MaxAccepts,但似乎没有任何效果
_host = new WebHostBuilder()
.UseHttpSys(options =>
{
options.Authentication.Schemes = AuthenticationSchemes.NTLM | AuthenticationSchemes.Negotiate;
options.Authentication.AllowAnonymous = true;
options.MaxConnections = -1;
options.MaxAccepts = 200;
})