ServiceThrottlingBehavior.MaxConcurrentCalls 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指定整个 ServiceHost 中正在处理的最多消息数。
public:
property int MaxConcurrentCalls { int get(); void set(int value); };
public int MaxConcurrentCalls { get; set; }
member this.MaxConcurrentCalls : int with get, set
Public Property MaxConcurrentCalls As Integer
属性值
服务中活动消息的上限。 默认为处理器计数的 16 倍。
示例
下面的代码示例演示如何从配置文件中使用 ServiceThrottlingBehavior,举例来说,它可将 MaxConcurrentSessions、MaxConcurrentCalls 和 MaxConcurrentInstances 属性设置为 1。 对于任何特定应用程序,其最佳设置取决于实际经验。
<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>
注解
MaxConcurrentCalls 属性指定整个 ServiceHost 对象中正在处理的最多消息数。 在 Windows Communication Foundation (WCF) 开始处理之前,每个通道都有一个不计入 的值 MaxConcurrentCalls 的挂起消息。
还可以通过使用 <应用程序配置文件中的 serviceThrottling> 元素来设置此属性的值。
警告
MaxConcurrentCalls 在排队方案中,应设置为小于 SQL 连接池大小。