ChannelFactory最大连接池

时间:2011-12-20 17:32:27

标签: c# multithreading wcf channelfactory

我正在创建一个测试工具来强调加载服务器。我创建了许多不同的线程,向服务器发送单独的请求。它似乎受到ChannelFactory的限制。它是进行实际服务呼叫的瓶颈,例如:

_proxy.MyServiceCall(...);

我尝试了几种不同的方法:

  • 使用所有线程共享的单个静态ChannelFactory
  • 为每个线程创建一个新的渠道工厂
  • 每次通话创建新的渠道工厂

所有这些导致相当类似的性能。通道工厂似乎正在使用全局静态可用连接池。我试过这个但是找不到任何东西。你能更多地了解这个吗?你认为我猜有一个静态的连接池是正确的吗?如果是这样,你知道如何配置它吗?

这是测试应用程序的当前配置:

<configuration>
  <system.serviceModel>
    <client>
      <endpoint binding="wsHttpBinding" bindingConfiguration="SynchronizationServiceBinding" contract="My.Namespace.ISynchronizationService" name="ClientBinding">
      </endpoint>
    </client>
    <bindings>
      <wsHttpBinding>
        <binding name="SynchronizationServiceBinding" maxBufferPoolSize="2147483647" maxReceivedMessageSize="10485760">
          <security mode="Transport">
            <transport clientCredentialType="None"/>
          </security>
          <reliableSession enabled="false"/>
          <readerQuotas maxArrayLength="1000000"/>
        </binding>
      </wsHttpBinding>
    </bindings>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>    </configuration>

1 个答案:

答案 0 :(得分:4)

事实证明,我需要做的就是为system.net connectionManagement添加配置:

  <system.net>
    <connectionManagement>
       <add address = "*" maxconnection = "1000" />
    </connectionManagement>
  </system.net>

请参阅: Element (Network Settings)

请注意,此主题中的问题与我遇到的问题相同:IIS/WAS only handles two requests per client in parallel