我正在为性能负载测试准备我的WCF服务。我们需要找到系统限制。
我的理解是默认的WCF限制设置会影响性能负载测试,并且不允许查找系统限制。
我需要增加和放松WCF限制设置的配置设置是什么?
到目前为止,我有以下几项,我想知道它们是准确还是正确?
<behavior name="B1">
<serviceThrottling maxConcurrentCalls="20000" maxConcurrentSessions="20000" maxConcurrentInstances="20000"/>
</behavior>
答案 0 :(得分:1)
永远不会忘记设置最大连接属性:
<system.net>
<connectionManagement>
<add address="*" maxconnection="500" />
</connectionManagement>
默认值为2.有关详细信息,请参阅:scale up WCF service