ServiceThrottling default values?

后端 未结 1 1434
梦谈多话
梦谈多话 2021-01-05 06:22

Hi,

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

  • MaxConcurrentSessions: 16 * pro
1条回答
  •  萌比男神i
    2021-01-05 07:09

    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

    0 讨论(0)
提交回复
热议问题