Nhibernate 2.0 GA に移行していますが、memcached プロバイダーでのキャッシュ有効期限の設定に問題があります。
NHibernate.Caches.MemCache ソースには、有効期限のプロパティと 300 秒のデフォルト値があることがわかります。
キャッシュ領域のプロパティもありますが、構成セクション ハンドラーはそれらをマップしていないようです。
プロバイダー固有ではない、キャッシュの有効期限を設定する他の方法はありますか -
これは機能的な Web 構成セクションです (明らかに有効期限の設定はありません)。
<memcache>
<memcached host="127.0.0.1" port="11211"/>
<!-- or multiples -->
</memcache>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
<session-factory>
<property name="show_sql">true</property>
<property name="connection.provider" >NHibernate.Connection.DriverConnectionProvider</property>
<property name="dialect">NHibernate.Dialect.MsSql2000Dialect</property>
<property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property>
<!-- <property name="hibernate.cache.provider_class" value="NHibernate.Caches.MemCache.MemCacheProvider,NHibernate.Caches.MemCache" /> -->
<property name="connection.connection_string">Data Source=stage2.ripple6.com;Initial Catalog=r6stage;User Id=sa;Password=mworld7650;Application Name=Hibernate;</property>
<property name="connection.isolation">ReadCommitted</property>
<property name="cache.use_second_level_cache">true</property>
<property name="cache.provider_class">NHibernate.Caches.MemCache.MemCacheProvider,NHibernate.Caches.MemCache</property>
<property name="default_schema" >r6stage.dbo</property>
</session-factory>
</hibernate-configuration>