Sitecore Azure module cache setting -


site hosted on azure. new content delivery server configured traffic manager split traffic between 2 content delivery servers / databases.

the problem whenever publish cache not clear new database, viewing url endpoint database shows old content. our theory cache new cd database not being cleared.

if server resets / restarts, caches clear, , content can seen on urls expected.

is there configuration change needs done cache setting when adding new servers sitecore azure

example:

  • a change made on cms , published both targets.
  • change pushed through targets (staging, west, east) , can seen in cms
  • change observed on direct url west db
  • change not seen on direct url east db

no there shouldn't need change settings per environment should noted azure module sets new deployment default settings , not changes may have made existing 1 in deployment items under azure module.

are using same site on both environments? if not may need add 1 isn't working publish:end , publish:end:remote events in web.config.

like this:

<event name="publish:end">     <handler type="sitecore.publishing.htmlcacheclearer, sitecore.kernel" method="clearcache">       <sites hint="list">         <site>website</site>         <site>test</site>       </sites>     </handler>   </event>   <event name="publish:end:remote">     <handler type="sitecore.publishing.htmlcacheclearer, sitecore.kernel" method="clearcache">       <sites hint="list">         <site>website</site>         <site>test</site>       </sites>     </handler>   </event> 

Comments