Fixes issue with broken caches used for user permissions

Calculating start nodes is expensive and this is supposed to be cached but the cache was not working.
This commit is contained in:
Shannon
2021-02-09 13:43:28 +11:00
parent febb15445a
commit 3b3d55ca26
33 changed files with 325 additions and 220 deletions

View File

@@ -12,5 +12,10 @@
public const string MacroContentCacheKey = "macroContent_"; // used in MacroRenderers
public const string MacroFromAliasCacheKey = "macroFromAlias_";
public const string UserAllContentStartNodesPrefix = "AllContentStartNodes";
public const string UserAllMediaStartNodesPrefix = "AllMediaStartNodes";
public const string UserMediaStartNodePathsPrefix = "MediaStartNodePaths";
public const string UserContentStartNodePathsPrefix = "ContentStartNodePaths";
}
}