Forum Discussion
ironfly
Sep 25, 2022Copper Contributor
SetMinThreads not sticking on Azure Web app
We are setting the minimum threads for our asp.net app in the Application_Start using: System.Threading.ThreadPool.SetMinThreads(100,100) This is working in our dev environment (IIS 10 box) an...
SvenCM
Copper Contributor
Same for us. Using ThreadPool.SetMinThreads in global.asax Application_Start does not fail but also does not set any values permanently. It would be helpful for StackExchange.Redis performance and even overall performance of web app.
SvenCM
Nov 22, 2022Copper Contributor
My latest finding is, that for "slots" the setting is permanently set on Application_Start() but not for the "main" slot of the instance.