我在appfabric中遇到问题,我配置了服务器和客户端但总是收到此错误。如果对象大小超过8M,我收到此错误,
其他信息:暂时失败。请重试 后来。 (一个或多个指定的缓存服务器不可用,其中 可能是由繁忙的网络或服务器引起的。对于本地缓存 群集,还验证以下条件。确保安全 已为此客户帐户授予权限,并检查该权限 允许AppFabric缓存服务通过防火墙 缓存主机。此外,服务器上的MaxBufferSize必须大于 或等于从客户端发送的序列化对象大小。)
AppFabric配置:
<advancedProperties>
<partitionStoreConnectionSettings leadHostManagement="false" />
<storeProperties rootDirSize="12" subDirSize="2" />
<memoryPressureMonitor throttleLowPercent="4" throttleHighPercent="11" />
<securityProperties mode="None" protectionLevel="None">
<authorization>
<allow users="everyone" />
<allow users="**" />
</authorization>
</securityProperties>
</advancedProperties>
客户端配置:
<dataCacheClient requestTimeout="15000" channelOpenTimeout="3000" maxConnectionsToServer="1">
<localCache isEnabled="true" sync="TimeoutBased" ttlValue="300" objectCount="10000"/>
<clientNotification pollInterval="300" maxQueueLength="10000"/>
<hosts>
<host name="**" cachePort="22233"/>
</hosts>
<securityProperties mode="None" protectionLevel="None" />
<transportProperties connectionBufferSize="131072" maxBufferPoolSize="268435456"
maxBufferSize="8388608" maxOutputDelay="2" channelInitializationTimeout="60000"
receiveTimeout="600000"/>