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 ApplicationsCacheKey = "ApplicationCache"; // used by SectionService
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
2019-01-27 01:17:32 -05:00
|
|
|
|
// TODO: this one can probably be removed
|
2019-01-21 15:39:19 +01:00
|
|
|
|
public const string TemplateFrontEndCacheKey = "template";
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
2018-07-20 10:59:25 +02:00
|
|
|
|
public const string MacroContentCacheKey = "macroContent_"; // used in MacroRenderers
|
2019-10-17 15:47:16 +01:00
|
|
|
|
public const string MacroFromAliasCacheKey = "macroFromAlias_";
|
2021-02-09 13:43:28 +11:00
|
|
|
|
|
|
|
|
|
|
public const string UserAllContentStartNodesPrefix = "AllContentStartNodes";
|
|
|
|
|
|
public const string UserAllMediaStartNodesPrefix = "AllMediaStartNodes";
|
|
|
|
|
|
public const string UserMediaStartNodePathsPrefix = "MediaStartNodePaths";
|
|
|
|
|
|
public const string UserContentStartNodePathsPrefix = "ContentStartNodePaths";
|
2018-06-29 19:52:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|