即使进行持久配置优化,流畅的 nHibernate 启动仍然很慢

发布于 2024-11-01 13:20:28 字数 547 浏览 6 评论 0原文

我们正在尝试减少 Fluent nHibernate 的启动开销。

我们见过的关于这个主题的所有文章(包括这篇文章)都做了以下内容两个建议:

  1. 在第一次运行时保留配置并随后恢复该配置,而不是重新创建它。
  2. 确保 ISessionFactory 在应用程序的每个会话中仅创建一次。

我们已经完成了这两项工作,并且在具有 SQLite 后端的双进程 2.8Ghz 64 位 Windows 7 系统上,创建会话工厂的 Fluent nHibernate 启动时间现在约为 550 毫秒。目前只有四个实体,平均每个实体约有六处房产。

这仍然太高了。我们希望将此时间减少到 20 毫秒或更短(这样,即使在较慢的系统上,该时间也会小于 100 毫秒)。我们有可能做到这一点吗?

任何深入了解 Fluent nHibernate 在启动过程中花费如此长的时间所做的事情也会有所帮助。

We're trying to reduce the Fluent nHibernate startup overhead.

All the articles we've seen on this subject (including this one) make the following two suggestions:

  1. Persist the configuration on the first run and restore that subsequently, instead of re-creating it.
  2. Make sure the ISessionFactory is created only once per session of the app.

We've done both of these, and the Fluent nHibernate startup time to create the session factory is now around 550ms on a dual-proc 2.8Ghz 64 bit Windows 7 system, with a SQLite backend. There are only four entities at present, with about six properties each on average.

This is still way too high. We'd like to reduce this time to 20ms or less (so that even on slow systems it will be less than 100ms). Is there any likelihood of us being able to do this?

Any insight into what Fluent nHibernate is doing during startup that takes so long will also help.

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

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

发布评论

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

评论(1

那片花海 2024-11-08 13:20:28

您可以使用管理 SessionFactory 的 WCF 服务。由于这独立于您的应用程序,因此启动时间根本不会受到 SessionFactory 的创建的影响。当然,这确实会带来许多其他复杂性(其中之一是延迟加载),但它确实解决了启动时间问题,因为当您启动应用程序时该服务已经在运行。

You could use a WCF service that manages your SessionFactory. Since this is independent of your application the start-up time would not be affected at all by the creation of your SessionFactory. Of course this does bring a number of other complexities (lazy loading for one) to the equation but it does solve your problem of startup time since the service would already be running when you start up your app.

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