如何在nhibernate中为syscache配置缓存区域?

时间:2010-07-09 16:53:27

标签: c# nhibernate syscache

我尝试使用来自网站的此帖子的缓存配置:

<configSections>
    <section name="hibernate-configuration" type="NHibernate.Cfg.ConfigurationSectionHandler, NHibernate" requirePermission="false"/>
    <section name="syscache" type="NHibernate.Caches.SysCache.SysCacheSectionHandler, NHibernate.Caches.SysCache" requirePermission="false" />
</configSections>

<!-- NHibernate -->
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
    <session-factory>
        <!-- dialect, connection string, etc... -->

        <property name="cache.provider_class">NHibernate.Caches.SysCache.SysCacheProvider, NHibernate.Caches.SysCache</property>
        <property name="cache.use_second_level_cache">true</property>
    </session-factory>
</hibernate-configuration>

<!-- Caching -->
<syscache>
    <cache region="LongTerm" expiration="3600" priority="5" />
    <cache region="ShortTerm" expiration="900" priority="3" />
</syscache>

<-- ... -->

但是我的hibernate.cfg.xml的模式文件似乎并不喜欢这个。我应该使用cache.region_prefix还是什么?我想使用Syscache,顺便说一句。

1 个答案:

答案 0 :(得分:4)

h configSectionssyscache部分都不在你的hibernate.cfg.xml文件中。

他们进入App.config / Web.config文件。