我在我的 SQL Server 2008 上设置了 enable_broker 以使用 SQLDepndency
我已将 .Net 应用程序配置为使用带有缓存区域的 Syscache2,如下所示:
<syscache2>
<cacheRegion name="BlogEntriesCacheRegion" priority="High">
<dependencies>
<commands>
<add name="BlogEntries"
command="Select EntryId from dbo.Blog_Entries where ENABLED=1"
/>
</commands>
</dependencies>
</cacheRegion>
</syscache2>
我的 Hbm 文件如下所示:
<?xml version="1.0" encoding="utf-8"?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
<class name="BlogEntry" table="Blog_Entries">
<cache usage="nonstrict-read-write" region="BlogEntriesCacheRegion"/>
....
</class>
</hibernate-mapping>
我还为针对 BlogEntry 的查询启用了查询缓存
当我第一次查询时,结果按预期缓存在二级缓存中。
如果我现在去更改 blog_entries 中的一行,一切都会按预期工作,缓存已过期,它会收到以下消息:
2010-03-03 12:56:50,583 [7] DEBUG NHibernate.Caches.SysCache2.SysCacheRegion - Cache items for region 'BlogEntriesCacheRegion' have been removed from the cache for the following reason : DependencyChanged
我希望如此。在下一页请求中,查询及其结果将存储回缓存中。但是,即使没有进一步更改,缓存也会立即再次失效。
DEBUG NHibernate.Caches.SysCache2.SysCacheRegion - Cache items for region 'BlogEntriesCacheRegion' have been removed from the cache for the following reason : DependencyChanged
我的缓存每次后续都会不断失效,而基础数据没有变化。只有重新启动应用程序才允许缓存再次运行 - 但只有第一次缓存数据时(同样,缓存的第一次变脏,导致它不再工作)
有没有人看到这个问题或知道这可能是什么?我在想 syscache2 需要处理它可能正在执行的 SQLDependency onChange 事件 - 所以我不明白为什么 SQL Server 不断发送 SQLDependency depedencyChanged。
谢谢