1

我一直在尝试使用流利的 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");
     ...
 }

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

4

1 回答 1

3

您需要在 web/app.config 的 syscache 配置中添加此区域的优先级和过期时间。看看这篇优秀的帖子,了解如何使用二级缓存。这些示例使用香草 NHibernate,但您应该明白 - 关于配置 syscache 的内容在帖子的末尾。

于 2010-06-03T17:23:18.207 回答