我为对象使用实体缓存(二级缓存)。现在,在一个特定的查询(我使用OueryOver)中,我需要回避二级缓存。我试图在我的查询中省略“Cacheable”属性,但仍然通过我假设的二级缓存来缓存查询。
我的运行时间:
.NET 4.0 NHibernate:3.1.0.4000 流利的NHiberante:1.2.0.712
我的对象:
[Serializable]
public class ArticleWishListItem : EntityBase<int>
{
public virtual int CustomerId { get; set; }
public virtual int ArticleId { get; set; }
public virtual DateTime CreatedDate { get; set; }
}
我的映射:
public class ArticleWishListItemMapping : ClassMap<ArticleWishListItem>
{
public ArticleWishListItemMapping()
{
Cache.ReadWrite().Region("WishList");
Id(a => a.Id).GeneratedBy.Native();
Map(a => a.ArticleId).Not.Nullable();
Map(a => a.CreatedDate).Not.Nullable();
Map(a => a.CustomerId).Not.Nullable();
}
}
我的查询结果与我的愿望相反:
private static List<ArticleWishListItem> GetArticleWishListItemsImplementation(NHibernate.ISession session, int customerId)
{
return session.QueryOver<ArticleWishListItem>()
.Where(a => a.CustomerId == customerId)
.List<ArticleWishListItem>()
.ToList<ArticleWishListItem>();
}
即使我想为实体启用缓存,每次使此查询都能访问数据库的最佳方法是什么?我可以使用IStatelessSession,它可以在这种情况下工作,因为它会跳过二级缓存,但它是推荐的解决方案吗?
答案 0 :(得分:3)
您需要使用CacheMode.Ignore(只有在发生更新时才会使缓存无效),CacheMode.Refresh(将刷新缓存中的所有项目并忽略use_minimal_puts)或CacheMode.Put(将刷新任何无效的项目)我认为缓存)。关于枚举值的注释告诉你它们做得更好。
例如:
return session.QueryOver<ArticleWishListItem>()
.Where(a => a.CustomerId == customerId)
.CacheMode(CacheMode.Refresh)
.List<ArticleWishListItem>();
我不确定你为什么要调用。再次列出 - 这对我来说似乎是多余的,因为对.List的调用将会返回一个列表...