2018-07-20 10:59:25 +02:00
|
|
|
|
namespace Umbraco.Core.Cache
|
2018-06-29 19:52:40 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Constants storing cache keys used in caching
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static class CacheKeys
|
|
|
|
|
|
{
|
2018-07-20 10:59:25 +02:00
|
|
|
|
public const string ApplicationTreeCacheKey = "ApplicationTreeCache"; // used by ApplicationTreeService
|
|
|
|
|
|
public const string ApplicationsCacheKey = "ApplicationCache"; // used by SectionService
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
2018-07-20 10:59:25 +02:00
|
|
|
|
public const string TemplateFrontEndCacheKey = "template"; // fixme usage?
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
2018-07-20 10:59:25 +02:00
|
|
|
|
public const string MacroContentCacheKey = "macroContent_"; // used in MacroRenderers
|
2018-06-29 19:52:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|