0

Some people recommend to avoid using Web Garden. Instead they recommend to try first tuning some parameters in ASP.NET app web.config file by using this.

As far as I know Web Garden consists on incrementing the number of worker processes in the Pool. It is like having multiple threads serving the incoming requests.

So what's the difference between using multiple worker processes for the Pool and tuning the ASP.NET web.config file by using parameters such as MaxWorkerThreads, MaxIOThreads, etc.?

Both consists on using more than one thread so I am not be able to see the difference between these two techniques.

4

1 回答 1

0

我觉得在使用可扩展性时,您希望在水平扩展之前尽可能地垂直扩展。

你听到的建议是同样的事情。您确保为一个 IIS 实例设置最大工作线程数,以给它一个战斗的机会。最好先这样做并增加 CPU,然后再进行水平扩展。

于 2019-06-02T00:13:59.433 回答