我有一个关于使用 AppFabric 缓存时网络连接限制的查询。
就基于 ASP.NET WCF 的应用程序而言,Windows AppFabricCache 'maxConnectionsToServer' 设置如何与 System.Net 'maxconnection' 设置交互?
例如。如果如下所示,maxConnectionsToServer 设置为 100,但 maxconnection 设置为 50,那么 maxconnection 是否会“覆盖”并变为 100?或者 maxconnection 中的值是否限制了 maxConnectionsToServer 的值?
...
<dataCacheClient requestTimeout="2000" channelOpenTimeout="0" maxConnectionsToServer="100">
<hosts>
<host name="127.0.0.1" cachePort="22233" />
</hosts>
<localCache isEnabled="true" sync="TimeoutBased" objectCount="10000" ttlValue="21600" />
</dataCacheClient>
...
<configuration>
<system.net>
<connectionManagement>
<add address="*" maxconnection="50"/>
</connectionManagement>
</system.net>
</configuration>
...
提前致谢