使用 ServiceThrottlingBehavior 控制 WCF 服务性能

ServiceThrottlingBehavior 类公开的属性可用于限制在应用程序级别创建实例或会话的数量。 使用此行为,你可以优化 Windows Communication Foundation (WCF) 应用程序的性能。

控制服务实例和并发调用

使用 MaxConcurrentCalls 属性指定在 ServiceHost 类上主动处理的最大消息数,并使用 MaxConcurrentInstances 属性指定服务中 InstanceContext 对象的最大数目。

由于通常是在实际针对负载运行应用程序之后,确定这些属性的设置,因此一般使用 <serviceThrottling> 元素在应用程序配置文件中指定 ServiceThrottlingBehavior 属性的设置。

下面的代码示例演示如何使用将 ServiceThrottlingBehaviorMaxConcurrentSessionsMaxConcurrentCalls 属性设置为 1(作为最小示例)的应用程序配置文件中的 MaxConcurrentInstances 类。 实际体验确定任何特定应用程序的最佳设置。

<configuration>
  <appSettings>
    <!-- use appSetting to configure base address provided by host -->
    <add key="baseAddress" value="http://localhost:8080/ServiceMetadata" />
  </appSettings>
  <system.serviceModel>
    <services>
      <service 
        name="Microsoft.WCF.Documentation.SampleService"
        behaviorConfiguration="Throttled" >
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8080/SampleService"/>
          </baseAddresses>
        </host>
        <endpoint
          address=""
          binding="wsHttpBinding"
          contract="Microsoft.WCF.Documentation.ISampleService"
         />
        <endpoint
          address="mex"
          binding="mexHttpBinding"
          contract="IMetadataExchange"
         />
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior  name="Throttled">
          <serviceThrottling 
            maxConcurrentCalls="1" 
            maxConcurrentSessions="1" 
            maxConcurrentInstances="1"
          />
          <serviceMetadata 
            httpGetEnabled="true" 
            httpGetUrl=""
          />
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>
</configuration>

确切的运行时行为取决于 ConcurrencyModeInstanceContextMode 属性的值,这两种属性分别控制操作一次可执行的消息数以及有关传入通道会话的服务 InstanceContext 的生存期。

有关详细信息,请参见 MaxConcurrentCallsMaxConcurrentInstances

另请参阅