2013-03-12 03:00:42 +04:00
|
|
|
namespace Umbraco.Core.Cache
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Constants storing cache keys used in caching
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static class CacheKeys
|
|
|
|
|
{
|
2013-03-12 22:58:21 +04:00
|
|
|
public const string MediaCacheKey = "GetMedia";
|
2013-03-12 03:00:42 +04:00
|
|
|
|
|
|
|
|
//NOTE: pretty sure this is never used anymore
|
|
|
|
|
internal const string MacroRuntimeCacheKey = "UmbracoRuntimeMacroCache";
|
2013-03-12 22:58:21 +04:00
|
|
|
public const string MacroCacheKey = "UmbracoMacroCache";
|
|
|
|
|
public const string MacroHtmlCacheKey = "macroHtml_";
|
|
|
|
|
public const string MacroControlCacheKey = "macroControl_";
|
|
|
|
|
public const string MacroHtmlDateAddedCacheKey = "macroHtml_DateAdded_";
|
|
|
|
|
public const string MacroControlDateAddedCacheKey = "macroControl_DateAdded_";
|
2013-03-12 03:00:42 +04:00
|
|
|
|
2013-03-12 22:58:21 +04:00
|
|
|
public const string MemberCacheKey = "GetMember";
|
2013-03-12 03:00:42 +04:00
|
|
|
|
|
|
|
|
public const string TemplateCacheKey = "template";
|
|
|
|
|
|
|
|
|
|
public const string UserCacheKey = "UmbracoUser";
|
|
|
|
|
}
|
|
|
|
|
}
|