Setting minimum threads in thread pool

Posted by expert on Stack Overflow See other posts from Stack Overflow or by expert
Published on 2009-12-03T22:57:39Z Indexed on 2010/05/31 14:03 UTC
Read the original article Hit count: 131

Filed under:
|

I have an application with 4 worker threads from the thread pool. It was waking up every 0.5 second. as written in msdn the thread pool monitors every 0,5 second to create idle threads. I set the nuber of minimum threads to 4 and it solved the problem - no more background activity all the time. My question is - I have another applicatiopn which has the same number of threads threads-4, but here setting min thread to 4 doesn't help but when setting min thread to 5 then the background monitoring stops. What might be the difference between 2 application with the same number of threads from the thread pool- 4 threads.On one setting min threads to 4 helps and the other only setting min threads to 5 helps?

© Stack Overflow or respective owner

Related posts about c#

Related posts about threadpool