namespace Umbraco.Cms.Core.Scoping;
///
/// Specifies the cache mode of repositories.
///
public enum RepositoryCacheMode
{
///
/// Unspecified.
///
Unspecified = 0,
///
/// Default, full L2 cache.
///
Default = 1,
///
/// Scoped cache.
///
///
/// Reads from, and writes to, a scope-local cache.
/// Upon scope completion, clears the global L2 cache.
///
Scoped = 2,
///
/// No cache.
///
///
/// Bypasses caches entirely.
/// Upon scope completion, clears the global L2 cache.
///
None = 3,
}