Files
Umbraco-CMS/src/Umbraco.Web/Cache/PageCacheRefresher.cs

88 lines
2.6 KiB
C#
Raw Normal View History

using System;
2013-03-12 03:00:42 +04:00
using Umbraco.Core.Cache;
using Umbraco.Core.Models;
using Umbraco.Core.Sync;
using umbraco;
using umbraco.cms.businesslogic.web;
using umbraco.interfaces;
using umbraco.presentation.cache;
namespace Umbraco.Web.Cache
{
/// <summary>
/// PageCacheRefresher is the standard CacheRefresher used by Load-Balancing in Umbraco.
/// </summary>
/// <remarks>
/// If Load balancing is enabled (by default disabled, is set in umbracoSettings.config) PageCacheRefresher will be called
/// everytime content is added/updated/removed to ensure that the content cache is identical on all load balanced servers
/// </remarks>
public class PageCacheRefresher : ICacheRefresher<IContent>
{
/// <summary>
/// Gets the unique identifier of the CacheRefresher.
/// </summary>
/// <value>The unique identifier.</value>
public Guid UniqueIdentifier
{
get
{
return new Guid(DistributedCache.PageCacheRefresherId);
}
}
/// <summary>
/// Gets the name of the CacheRefresher
/// </summary>
/// <value>The name.</value>
public string Name
{
get { return "Page Refresher"; }
}
/// <summary>
/// Refreshes all nodes in umbraco.
/// </summary>
public void RefreshAll()
{
content.Instance.RefreshContentFromDatabaseAsync();
}
/// <summary>
/// Not used with content.
/// </summary>
/// <param name="id">The id.</param>
public void Refresh(Guid id)
{
// Not used when pages
}
/// <summary>
/// Refreshes the cache for the node with specified id
/// </summary>
/// <param name="id">The id.</param>
public void Refresh(int id)
{
content.Instance.UpdateDocumentCache(id);
}
/// <summary>
/// Removes the node with the specified id from the cache
/// </summary>
/// <param name="id">The id.</param>
public void Remove(int id)
{
content.Instance.ClearDocumentCache(id);
}
public void Refresh(IContent instance)
{
content.Instance.UpdateDocumentCache(new Document(instance));
}
public void Remove(IContent instance)
{
content.Instance.ClearDocumentCache(new Document(instance));
}
}
}