I have a query about network connection throttling when using AppFabric cache.
In terms of an ASP.NET WCF based application, how does the Windows AppFabricCache 'maxConnectionsToServer' setting interact with the System.Net 'maxconnection' setting?
eg. If, as shown below, the maxConnectionsToServer is set to 100 but the maxconnection is set to 50, does maxconnection get 'overrriden' and become 100? Or does the value in maxconnection limit that of 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>
...
Thanks in advance