2019-01-17 11:01:23 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Web.Caching;
|
|
|
|
|
|
|
|
|
|
|
|
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>
|
2019-01-18 07:56:38 +01:00
|
|
|
|
public class NoAppCache : IAppPolicyCache
|
2019-01-17 11:01:23 +01:00
|
|
|
|
{
|
|
|
|
|
|
private NoAppCache() { }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the singleton instance.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static NoAppCache Instance { get; } = new NoAppCache();
|
|
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public virtual object Get(string cacheKey)
|
|
|
|
|
|
{
|
|
|
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public virtual object Get(string cacheKey, Func<object> factory)
|
|
|
|
|
|
{
|
|
|
|
|
|
return factory();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public virtual IEnumerable<object> SearchByKey(string keyStartsWith)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Enumerable.Empty<object>();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public IEnumerable<object> SearchByRegex(string regex)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Enumerable.Empty<object>();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
2019-11-07 18:29:16 +11:00
|
|
|
|
public object Get(string key, Func<object> factory, TimeSpan? timeout, bool isSliding = false, CacheItemPriority priority = CacheItemPriority.Normal, string[] dependentFiles = null)
|
2019-01-17 11:01:23 +01:00
|
|
|
|
{
|
|
|
|
|
|
return factory();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
2019-11-07 18:29:16 +11:00
|
|
|
|
public void Insert(string key, Func<object> factory, TimeSpan? timeout = null, bool isSliding = false, CacheItemPriority priority = CacheItemPriority.Normal, 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(string typeName)
|
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
|
|
/// <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)
|
|
|
|
|
|
{ }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|