标签:style blog http io ar 使用 sp strong on
WCF实例模式类型与区别
实例化模式 instanceMode
[ServiceBehavior(InstanceContextMode=InstanceContextMode.PerCall)]
[ServiceBehavior(InstanceContextMode=InstanceContextMode.PerSession)]
[ServiceBehavior(InstanceContextMode=InstanceContextMode.Single)]
示意图
并发控制
maxConcurrentCalls=”1000” //
maxConcurrentInstances=”1000”
maxConcurrentSessions=”1000”/>
并发控制默认值和WCF版本
注:建议使用自定义配置不要使用系统默认配置以便程序能够及时定位错误
项目 |
3.0 |
3.5 |
4.0 |
4.5 |
MaxCall |
16 |
16 |
16 |
16X处理器 |
MaxInstance |
Int32.MaxValue |
26 |
26 |
maxCall+MaxSession |
MaxSession |
10 |
10 |
10 |
100X处理器 |
标签:style blog http io ar 使用 sp strong on
原文地址:http://www.cnblogs.com/running-mydream/p/4133719.html