3

如何在代码中配置二级缓存(不是通过 xml)

我目前的设置是:

 public NHCachingSetup(Configuration cfg)
        {
            // use first level cache
            cfg.Cache(x =>
            {
                x.UseQueryCache = true;
                x.Provider<SysCacheProvider>();
            });

            // set 60 min expiration time
            cfg.SessionFactory().Caching
                .WithDefaultExpiration(60);
        }
4

2 回答 2

3

我用 NH 3.3 做到这一点的方式就像

var configure = new Configuration();
...
configure.Cache(x => x.UseQueryCache = true)
...
configure.SessionFactory().Caching
  .Through<SysCacheProvider>().WithDefaultExpiration(1440);//secs!

在您的映射中编辑您将需要:-

Cache(x => x.Usage(CacheUsage.ReadOnly));

结束编辑

然后使用你可以做类似的事情(这为我缓存了一个查找表): -

Db.Query<SpamAssassin>().Cacheable().CacheMode(CacheMode.Normal).ToList();
于 2013-03-19T11:37:45.530 回答
0

知道了:

cfg.SetProperty(Environment.BatchSize, "100")
                .SetProperty(Environment.UseQueryCache, "true")
                .SetProperty(Environment.UseSecondLevelCache, "true")
                .Cache(x => { x.Provider<SysCacheProvider>(); });
于 2013-03-20T05:24:46.220 回答