I have been modifying the .net process model to solve some throughput issues. I've read a lot of the articles out there but need some clarification on the minFreeThreads property. Does raising this value mean that more threads are reserved to process outgoing requests (make call to external web service)?
Use Case: I have a async handler that is waiting for a callback to respond to the requester. There is a timer that causes requests past a time limit to respond with "no data". If there are 100's of these requests that need a response, does a high minFreeThreads value allow more of these requests to go out?