namespace Umbraco.Core.Cache { /// /// Constants storing cache keys used in caching /// public static class CacheKeys { public const string ApplicationTreeCacheKey = "ApplicationTreeCache"; // used by ApplicationTreeService public const string ApplicationsCacheKey = "ApplicationCache"; // used by SectionService public const string TemplateFrontEndCacheKey = "template"; // fixme usage? public const string MacroContentCacheKey = "macroContent_"; // used in MacroRenderers } }