Files
Umbraco-CMS/src/Umbraco.Core/Cache/NoAppCache.cs

94 lines
2.5 KiB
C#
Raw Normal View History

2019-01-17 11:01:23 +01:00
using System;
using System.Collections;
2019-01-17 11:01:23 +01:00
using System.Collections.Generic;
using System.Linq;
namespace Umbraco.Core.Cache
{
/// <summary>
2019-01-18 07:56:38 +01:00
/// Implements <see cref="IAppPolicyCache"/> and do not cache.
2019-01-17 11:01:23 +01:00
/// </summary>
public class NoAppCache : IAppPolicyCache, IRequestCache
2019-01-17 11:01:23 +01:00
{
protected NoAppCache() { }
2019-01-17 11:01:23 +01:00
/// <summary>
/// Gets the singleton instance.
/// </summary>
public static NoAppCache Instance { get; } = new NoAppCache();
/// <inheritdoc />
public bool IsAvailable => false;
2019-01-17 11:01:23 +01:00
/// <inheritdoc />
public virtual object Get(string cacheKey)
{
return null;
}
/// <inheritdoc />
public virtual object Get(string cacheKey, Func<object> factory)
{
return factory();
}
public bool Set(string key, object value) => false;
public bool Remove(string key) => false;
2019-01-17 11:01:23 +01:00
/// <inheritdoc />
public virtual IEnumerable<object> SearchByKey(string keyStartsWith)
{
return Enumerable.Empty<object>();
}
/// <inheritdoc />
public IEnumerable<object> SearchByRegex(string regex)
{
return Enumerable.Empty<object>();
}
/// <inheritdoc />
public object Get(string key, Func<object> factory, TimeSpan? timeout, bool isSliding = false, string[] dependentFiles = null)
2019-01-17 11:01:23 +01:00
{
return factory();
}
/// <inheritdoc />
public void Insert(string key, Func<object> factory, TimeSpan? timeout = null, bool isSliding = false, string[] dependentFiles = null)
2019-01-17 11:01:23 +01:00
{ }
/// <inheritdoc />
public virtual void Clear()
{ }
/// <inheritdoc />
public virtual void Clear(string key)
{ }
/// <inheritdoc />
public virtual void ClearOfType(Type type)
2019-01-17 11:01:23 +01:00
{ }
/// <inheritdoc />
public virtual void ClearOfType<T>()
{ }
/// <inheritdoc />
public virtual void ClearOfType<T>(Func<string, T, bool> predicate)
{ }
/// <inheritdoc />
public virtual void ClearByKey(string keyStartsWith)
{ }
/// <inheritdoc />
public virtual void ClearByRegex(string regex)
{ }
public IEnumerator<KeyValuePair<string, object>> GetEnumerator() => new Dictionary<string, object>().GetEnumerator();
IEnumerator IEnumerable.GetEnumerator() => GetEnumerator();
2019-01-17 11:01:23 +01:00
}
}