Как настроить области кэша для syscache в nhibernate? - PullRequest
3 голосов
/ 09 июля 2010

Я пытался использовать конфигурацию кэша, как этот пост с веб-сайта:

<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 Ответ

4 голосов
/ 09 июля 2010

Ни разделы configSections, ни syscache не входят в ваш файл hibernate.cfg.xml.

Они помещаются в файл App.config / Web.config.

...