on util thread pool reduce the min number of threads, increase the

maximum and increase the idle time before release to OS
This commit is contained in:
UbitUmarov
2014-10-13 12:10:13 +01:00
parent 9d52b7ff71
commit a301bad8ad
2 changed files with 3 additions and 3 deletions

View File

@@ -1850,7 +1850,7 @@ namespace OpenSim.Framework
STPStartInfo startInfo = new STPStartInfo();
startInfo.ThreadPoolName = "Util";
startInfo.IdleTimeout = 2000;
startInfo.IdleTimeout = 20000;
startInfo.MaxWorkerThreads = maxThreads;
startInfo.MinWorkerThreads = minThreads;