using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
namespace Umbraco.Core.Cache
{
///
/// Implements and do not cache.
///
public class NoAppCache : IAppPolicyCache, IRequestCache
{
protected NoAppCache() { }
///
/// Gets the singleton instance.
///
public static NoAppCache Instance { get; } = new NoAppCache();
///
public bool IsAvailable => false;
///
public virtual object Get(string cacheKey)
{
return null;
}
///
public virtual object Get(string cacheKey, Func