0

根据这篇 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 角色内缓存(并置)中的哪里可以找到缓存主机配置文件?

4

1 回答 1

0

您在本地 AppFabric 缓存中配置的主机属性在 InRole 缓存中动态初始化。您可以在 Program Files\Microsoft SDKs\Windows Azure.NET SDK\v2.2\bin\plugins\Caching 中检查 Caching.csplugin 以查看缓存服务器的端点。

于 2015-04-10T21:35:42.223 回答