如何在流畅的nhibernate和syscache2中配置缓存区域

时间:2010-06-03 08:48:32

标签: c# fluent-nhibernate syscache2

我一直在尝试使用流利的nhibernate实现缓存区域,到目前为止我已经完成了以下操作:

1)在Fluently.Configure()中设置缓存:

private static ISessionFactory CreateSessionFactory()
{
    string csStringName = Environment.MachineName;

    var nhibConfigProps = new Dictionary<string, string>();
    nhibConfigProps.Add("current_session_context_class","web");

    var cfg = Fluently.Configure()
        .Database(MsSqlConfiguration.MsSql2008
                      .ConnectionString(c => c.FromConnectionStringWithKey(csStringName))
                      .ShowSql()
                      .Cache(cache=>cache.ProviderClass<NHibernate.Caches.SysCache2.SysCacheProvider>().UseQueryCache()))
        .Mappings(m => m.FluentMappings.AddFromAssemblyOf<UserMap>())
        .ExposeConfiguration(config => config.AddProperties(nhibConfigProps))
        .ExposeConfiguration(config=> config.EventListeners.DeleteEventListeners = new IDeleteEventListener[] {new SoftDeleteListener()})
        .ExposeConfiguration(config => new SchemaUpdate(config).Execute(false, true))
        .BuildSessionFactory();

    return cfg;
}

2)更改了我的ClassMap以启用缓存,并设置选择的区域:

 public UserMap()
 {
     Cache.ReadWrite().Region("User");
     ...
 }

希望我已经正确完成了上述操作,但我无法确定在哪里为每个区域配置优先级和缓存持续时间。你知道怎么做吗?如果您碰巧在上面的代码中发现了缺陷,我会非常感谢您的反馈。

1 个答案:

答案 0 :(得分:3)

您需要在web / app.config的syscache配置中添加此区域的优先级和到期时间。请查看this excellent post以获得有关使用二级缓存的详细说明。这些例子使用了vanilla NHibernate,但你应该明白这一点 - 关于配置syscache的一点是在帖子的最后。