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
Nov 21, 2022Copper 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.
- SvenCMNov 22, 2022Copper ContributorMy latest finding is, that for "slots" the setting is permanently set on Application_Start() but not for the "main" slot of the instance.