Maximum Concurrent Threads that WCF supports?
What is the maximum concurrent threads that WCF supports开发者_运维知识库?
WCF uses managed I/O threads from the CLR ThreadPool, so the max will be machine specific. Are you asking about the configuration of WCF throttling (MaxConcurrentCalls, MaxConcurrentInstances, and MaxConcurrentSessions)? If so, take a look at this blog post, it should help explain how it works.
精彩评论