I was reading Wenlong Dong's blog article about the default throttling settings for WCF services in WCF 4, and have a question about the values for the default settings:
MaxConcurrentSessions: default is 100 * ProcessorCount
MaxConcurrentCalls: default is 16 * ProcessorCount
MaxConcurrentInstances: default is the total of the above two, which follows the same pattern as before.
Does ProcessorCount refer to:
- The number of physical CPUs/sockets
- The number of physical cores across all CPUs
- The number of logical cores, if hyperthreading is enabled?
Thanks,
-- Patrick