porting 7.6-rc1 into 8

This commit is contained in:
Stephan
2017-05-12 14:49:44 +02:00
parent ade6c2f057
commit 8561d85f7a
1148 changed files with 41983 additions and 17045 deletions

View File

@@ -0,0 +1,27 @@
namespace Umbraco.Core.Scoping
{
/// <summary>
/// Specifies the cache mode of repositories.
/// </summary>
public enum RepositoryCacheMode
{
/// <summary>
/// Unspecified.
/// </summary>
Unspecified = 0,
/// <summary>
/// Default, full L2 cache.
/// </summary>
Default = 1,
/// <summary>
/// Scoped cache.
/// </summary>
/// <remarks>
/// <para>Reads from, and writes to, a scope-local cache.</para>
/// <para>Upon scope completion, clears the global L2 cache.</para>
/// </remarks>
Scoped = 2
}
}