【发布时间】:2017-04-02 18:52:32
【问题描述】:
我正在准备我的 WCF 服务以进行性能负载测试。我们需要找到系统限制。
我的理解是,默认的 WCF 节流设置会影响性能负载测试,并且不允许找到系统限制。
增加和放松 WCF 限制设置需要哪些配置设置?
到目前为止,我想到了以下几点,我想知道它们是准确的还是正确的?
<behavior name="B1">
<serviceThrottling maxConcurrentCalls="20000" maxConcurrentSessions="20000" maxConcurrentInstances="20000"/>
</behavior>
【问题讨论】:
标签: wcf throttling