U4-9322 - begin implementing scoped repository caches

This commit is contained in:
Stephan
2017-01-19 19:47:09 +01:00
parent 4ab7f768fa
commit 434703f4ec
14 changed files with 384 additions and 35 deletions

View File

@@ -0,0 +1,16 @@
namespace Umbraco.Core.Scoping
{
public enum RepositoryCacheMode
{
// ?
Unspecified = 0,
// the default, full L2 cache
Default = 1,
// a scoped cache
// reads from and writes to a local cache
// clears the global cache on completion
Scoped = 2
}
}