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-04-04 21:57:41 +06:00
|
|
|
public const string ApplicationTreeCacheKey = "ApplicationTreeCache";
|
|
|
|
|
public const string ApplicationsCacheKey = "ApplicationCache";
|
|
|
|
|
|
2013-04-04 03:43:05 +06:00
|
|
|
public const string UserTypeCacheKey = "UserTypeCache";
|
|
|
|
|
|
2013-04-03 22:34:40 +06:00
|
|
|
public const string ContentItemCacheKey = "contentItem";
|
|
|
|
|
|
2013-03-16 01:37:05 +06:00
|
|
|
public const string MediaCacheKey = "UL_GetMedia";
|
2013-03-12 03:00:42 +04:00
|
|
|
|
2013-04-03 23:39:51 +06:00
|
|
|
public const string MacroXsltCacheKey = "macroXslt_";
|
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-22 04:34:57 +06:00
|
|
|
public const string MemberLibraryCacheKey = "UL_GetMember";
|
|
|
|
|
public const string MemberBusinessLogicCacheKey = "MemberCacheItem_";
|
2013-03-12 03:00:42 +04:00
|
|
|
|
2013-03-22 02:08:55 +06:00
|
|
|
public const string TemplateFrontEndCacheKey = "template";
|
|
|
|
|
public const string TemplateBusinessLogicCacheKey = "UmbracoTemplateCache";
|
2013-03-12 03:00:42 +04:00
|
|
|
|
2013-04-04 02:11:31 +06:00
|
|
|
public const string UserContextCacheKey = "UmbracoUserContext";
|
|
|
|
|
public const string UserContextTimeoutCacheKey = "UmbracoUserContextTimeout";
|
2013-03-12 03:00:42 +04:00
|
|
|
public const string UserCacheKey = "UmbracoUser";
|
2013-03-16 08:47:55 +06:00
|
|
|
|
|
|
|
|
public const string ContentTypeCacheKey = "UmbracoContentType";
|
|
|
|
|
|
|
|
|
|
public const string ContentTypePropertiesCacheKey = "ContentType_PropertyTypes_Content:";
|
|
|
|
|
|
|
|
|
|
public const string PropertyTypeCacheKey = "UmbracoPropertyTypeCache";
|
|
|
|
|
|
2013-03-22 00:35:15 +06:00
|
|
|
public const string LanguageCacheKey = "UmbracoLanguageCache";
|
|
|
|
|
|
2013-03-22 00:49:07 +06:00
|
|
|
public const string DomainCacheKey = "UmbracoDomainList";
|
|
|
|
|
|
2013-03-22 01:49:34 +06:00
|
|
|
public const string StylesheetCacheKey = "UmbracoStylesheet";
|
|
|
|
|
public const string StylesheetPropertyCacheKey = "UmbracoStylesheetProperty";
|
|
|
|
|
|
2013-03-22 05:04:32 +06:00
|
|
|
public const string DataTypeCacheKey = "UmbracoDataTypeDefinition";
|
|
|
|
|
|
2013-03-12 03:00:42 +04:00
|
|
|
}
|
|
|
|
|
}
|