根据这篇 MSDN 文章(关于运行 Azure 的 AppFabric 缓存),我应该能够找到DistributedCacheService.exe.config
位于 的文件\Windows\System32\AppFabric
,但它在任何实例上都不存在。
当远程进入其中一个实例并搜索配置时,我在E:\plugins\Caching
.
该CacheService.config.exe
文件看起来很有前途(类似于DistributedCacheService .exe.config
),除了dataCacheConfig
未初始化:
<dataCacheConfig cacheHostName="">
<!-- Comment/uncomment below line to disable/enable file sink logging.
Also location attribute is not honored. It is just specified since its mandatory. -->
<!--<log logLevel="3" location="" />-->
<clusterConfig connectionString="" />
</dataCacheConfig>
我需要确认在服务器端正确配置了某些数据缓存设置,以解决我以前的帖子。
我的客户端web.config
看起来像这样:
<dataCacheClients>
<dataCacheClient name="DataCache1">
<autoDiscover isEnabled="true" identifier="MyRoleName" />
<transportProperties maxBufferPoolSize="6400000" maxBufferSize="256" />
</dataCacheClient>
<dataCacheClient name="DataCache2">
<autoDiscover isEnabled="true" identifier="MyRoleName" />
<transportProperties maxBufferPoolSize="0" maxBufferSize="10485760" />
</dataCacheClient>
<dataCacheClient name="DataCache3">
<autoDiscover isEnabled="true" identifier="MyRoleName" />
<transportProperties maxBufferPoolSize="3276800" maxBufferSize="32768" />
</dataCacheClient>
</dataCacheClients>
在 Azure 角色内缓存(并置)中的哪里可以找到缓存主机配置文件?