Sitecore 8.1输出缓存未清除

时间:2015-11-19 11:52:24

标签: sitecore outputcache sitecore8 sitecore-mvc

我们在使用ASP.NET MVC编写的Azure Web Apps中托管的不同服务器上安装了CA和CD。

我在下面添加了以便在发布结束时清除输出缓存。

<event name="indexing:end:remote">
        <handler type="Sitecore.ContentSearch.Maintenance.IndexDependentHtmlCacheManager, Sitecore.ContentSearch" method="Clear"/>
      </event>

但是,输出缓存不会被清除,网站内容也不会更新。

我需要在上面做什么配置?

感谢。

1 个答案:

答案 0 :(得分:2)

您可能缺少可扩展性设置。因为这些是不同的服务器,所以您的CD需要知道将要发布的服务器(Publishing.PublishingInstance)。通过这种方式,它可以读取远程发布事件并进行适当的激活。

请参阅App_Config \ Include文件夹中的“ScalabilitySettings.config.example”。

      <!--  INSTANCE NAME
        Unique name for Sitecore instance.
        Default value: (machine name and IIS site name)
  -->
  <setting name="InstanceName">
    <patch:attribute name="value"></patch:attribute>
  </setting>
  <!--  PUBLISHING INSTANCE
        Assigns the instance name of dedicated Sitecore installation for publishing operations.
        When empty, all publishing operations are performed on the local installation of Sitecore.
        Default vaue: (empty)
  -->
  <setting name="Publishing.PublishingInstance">
    <patch:attribute name="value"></patch:attribute>
  </setting>

正如@Wesley Lomax指出的那样,您还需要在远程发布的网站上运行HTML Cache Clearer:Content does not reflect on CD server after publishing from CM server