Sitecore 8.1 output cache not clearing

非 Y 不嫁゛ 提交于 2019-12-06 06:23:27
Jay S

You probably are missing your scalability settings. Because these are different servers, your CD needs to know which server will be publishing (Publishing.PublishingInstance). This way it can read the remote publishing events and fire appropriately.

See the "ScalabilitySettings.config.example" in your App_Config\Include folder.

      <!--  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>

As @Wesley Lomax points out, you also need HTML Cache Clearer running for your site on remote publishes: Content does not reflect on CD server after publishing from CM server

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!