Files
Umbraco-CMS/src/Umbraco.Core/Cache/CacheKeys.cs
T
2019-01-21 16:01:37 +01:00

16 lines
481 B
C#

namespace Umbraco.Core.Cache
{
/// <summary>
/// Constants storing cache keys used in caching
/// </summary>
public static class CacheKeys
{
public const string ApplicationsCacheKey = "ApplicationCache"; // used by SectionService
// TODO this one can probably be removed
public const string TemplateFrontEndCacheKey = "template";
public const string MacroContentCacheKey = "macroContent_"; // used in MacroRenderers
}
}