我有一個關於使用AppFabric緩存時網絡連接限制的查詢。Appfabric緩存maxconnectionstoserver
就基於ASP.NET WCF的應用程序而言,Windows AppFabricCache'maxConnectionsToServer'設置如何與System.Net'maxconnection'設置交互?
例如。如果,如下所示,maxConnectionsToServer設置爲100,但maxconnection設置爲50,maxconnection是否獲得'overrriden'併成爲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>
...
在此先感謝
感謝您的回答德魯。 –