这就是我所拥有的:
[OutputCache(Duration = 3600, VaryByParam = "model")]
public object Hrs(ReportFilterModel model) {
var result = GetFromDatabase(model);
return result;
}
我希望它为每个不同的模型缓存新结果。目前它正在缓存第一个结果,即使模型发生变化,也会返回相同的结果。
我甚至尝试覆盖ReportFilterModel的ToString
和GetHashCode
方法。实际上,我想要使用更多属性来生成唯一的HashCode
或String
。
public override string ToString() {
return SiteId.ToString();
}
public override int GetHashCode() {
return SiteId;
}
有任何建议,我如何使用OutputCache
来处理复杂的对象?
答案 0 :(得分:11)
来自MSDN的VaryByParam值:以分号分隔的字符串列表,对应于GET方法的查询字符串值,或者对应于POST方法的参数值。
如果要按所有参数值更改输出缓存,请将该属性设置为星号(*)。
另一种方法是创建OutputCacheAttribute和用户反射的子类来创建VaryByParam字符串。像这样:
public class OutputCacheComplex : OutputCacheAttribute
{
public OutputCacheComplex(Type type)
{
PropertyInfo[] properties = type.GetProperties();
VaryByParam = string.Join(";", properties.Select(p => p.Name).ToList());
Duration = 3600;
}
}
在控制器中:
[OutputCacheComplex(typeof (ReportFilterModel))]