NHibernate 2.1.1.4000 的 NHibernate 二级缓存提供程序

发布于 2024-08-22 03:15:03 字数 317 浏览 2 评论 0原文

我正在使用 s#arp,它是针对 NHibernate 2.1.1.4000 构建的,但是我想使用 NHibernate.Caches.SysCache 作为我的二级缓存。然而,Nhibernate contrib 缓存是针对 NHibernate 2.1.2.4000 构建的,这显然给我带来了问题。

任何人都可以向我指出一个可以下载针对 NHibernate 2.1.1.4000 构建的 NHibernate.Caches.SysCache.dll 的 URL

或者是否有另一个易于实现且针对 NHibernate 2.1.1.4000 构建的二级缓存提供程序

谢谢

I am using s#arp which is built against NHibernate 2.1.1.4000, However I would like to use NHibernate.Caches.SysCache as my second level cache. However the Nhibernate contrib caches are built against NHibernate 2.1.2.4000 which obviously gives me a problem.

Can anyone point me to a URL that I can download NHibernate.Caches.SysCache.dll that is built against NHibernate 2.1.1.4000

Or is there another 2nd level cache provider that is easy to implement and is built against NHibernate 2.1.1.4000

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

唠甜嗑 2024-08-29 03:15:03

我将从 nhforge.org 更新到 NHibernate 核心和 NHCache 的 2.1.2 版本,并使用程序集绑定重定向来更新 s#arp 引用。

<configuration>
   <runtime>
      <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
         <dependentAssembly>
            <assemblyIdentity name="NHibernate" publicKeyToken="aa95f207798dfdb4"/>
            <bindingRedirect oldVersion="2.1.1.4000" newVersion="2.1.2.4000"/>
         </dependentAssembly>
      </assemblyBinding>
   </runtime>
</configuration>

I would update to the 2.1.2 build of NHibernate core and NHCache from nhforge.org, and use an assembly binding redirect to update the s#arp reference.

<configuration>
   <runtime>
      <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
         <dependentAssembly>
            <assemblyIdentity name="NHibernate" publicKeyToken="aa95f207798dfdb4"/>
            <bindingRedirect oldVersion="2.1.1.4000" newVersion="2.1.2.4000"/>
         </dependentAssembly>
      </assemblyBinding>
   </runtime>
</configuration>
命比纸薄 2024-08-29 03:15:03

S#arp Architecture 1.5.2 现在支持 NHibernate 2.1.2.4000。如果您可以迁移到 MVC 2,则可以升级到此版本。

S#arp Architecture 1.5.2 supports NHibernate 2.1.2.4000 out of the box now. If you can move to MVC 2, you can upgrade to this version.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文