Return to doc.sitecore.com

  Publication
Prev Next

Publishing methods are described at http://sdn.sitecore.net/Articles/Administration/Sitecore%20Publishing%20Operations.html.  Infrequent incremental publishing has the least impact on site performance.

By default Sitecore is configured such that full publication truncates the item XML cache and any publication truncates the security and rendered caches associated with the target database.  The HTML and security caches can be controlled with the publish:end event in /web.config:

<event name="publish:end">
  
<handler type="Sitecore.Publishing.HtmlCacheClearer, Sitecore.Kernel" method="ClearCache">
    
<sites hint="list"><site>website</site></sites>
  
</handler>
  
<handler type="Sitecore.EventHandlers.CredentialCacheClearer, Sitecore.EventHandlers" method="ClearCache">
    
<sites hint="list"><site>website</site></sites>
  
</handler>
</event>

Prev Next