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>
..。
前もって感謝します