我已使用NuGet中的Microsoft RedisOutputCacheProvider成功实施了Azure Redis缓存,该工作正常用于常规页面。
[ChildActionOnly]
[ChildActionOutputCache(CacheProfile.StaticQueryStringComponent)]
public ActionResult Show(int id)
{
// some code
}
然而,我似乎无法让它为儿童行动而工作。在使用Redis Cache之前,它使用默认的OutputCacheProvider。
有没有人有任何想法,或者只是一个限制?
提前致谢
答案 0 :(得分:2)
在Global.asax.cs
中,设置与Redis对话的自定义子操作输出缓存:
protected void Application_Start()
{
// Register Custom Memory Cache for Child Action Method Caching
OutputCacheAttribute.ChildActionCache = new CustomMemoryCache("My Cache");
}
此缓存应来自MemoryCache
并实现以下成员:
/// <summary>
/// A Custom MemoryCache Class.
/// </summary>
public class CustomMemoryCache : MemoryCache
{
public CustomMemoryCache(string name)
: base(name)
{
}
public override bool Add(string key, object value, DateTimeOffset absoluteExpiration, string regionName = null)
{
// Do your custom caching here, in my example I'll use standard Http Caching
HttpContext.Current.Cache.Add(key, value, null, absoluteExpiration.DateTime,
System.Web.Caching.Cache.NoSlidingExpiration, System.Web.Caching.CacheItemPriority.Normal, null);
return true;
}
public override object Get(string key, string regionName = null)
{
// Do your custom caching here, in my example I'll use standard Http Caching
return HttpContext.Current.Cache.Get(key);
}
}
的更多信息