Banshee
Banshee

Reputation: 15827

ServiceThrottling default values?

Hi,

According to this link the default values of WCF 4.0 is this :

I know, not that clear. When looking in the documentation at MSDN(WCF 4.0) it says this :

If I however look at the WCF 4.5 some of the values is based on CPU like the first example

So witch one is the correct one?

Upvotes: 8

Views: 12209

Answers (1)

Richard Blewett
Richard Blewett

Reputation: 6109

Before WCF 4.0 the default values were

  • Concurrent Calls: 16
  • Concurrent Sessions: 10
  • Concurrent Instances: Concurrent Calls + Concurrent Sessions (26)

From WCF 4.0 onwards they are

  • Concurrent Calls: 16 * processor count
  • Concurrent Sessions: 100 * processor count
  • Concurrent Instances: Concurrent Calls + Concurrent Sessions

Upvotes: 12

Related Questions