减少 ASP.NET MVC 应用程序初始启动时的 JIT 开销

发布于 2024-12-21 18:44:48 字数 257 浏览 2 评论 0原文

目前正在开发 MVC3 应用程序并遇到较长(多秒)的启动时间。使用 ANTS 进行的性能分析将加载时间的唯一重要影响因素视为“(JIT 开销)”,占加载时间的 85-90%。同一页面的后续加载几乎是即时的,大约 5% 的时间花在 JIT 上。

我在正在加载的程序集上使用了 NGEN(并确保它们位于 GAC 中),并使用 aspnet_compiler 工具来预编译站点本身。两者似乎都对初始启动时间没有显着影响。

还有哪些其他选项可以减少 JIT 对初始负载的影响?

Currently developing an MVC3 application and experiencing high (multi-second) startup times. Performance profiling with ANTS pegs the only significant contributor to load time as "(JIT overhead)" at 85-90% of the time spent on load. Subsequent loads of the same page are near instant and spend ~5% of their time in the JIT.

I have used NGEN on the assemblies being loaded (and made sure they are in the GAC) and used the aspnet_compiler tool to pre-compile the site itself. Neither seem to have a significant effect on the initial startup time.

What other options are there for reducing the impact the JIT has on initial loads?

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

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

发布评论

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

评论(1

薯片软お妹 2024-12-28 18:44:48

我建议您按如下方式进行检查

  1. 检查 web.config 中的 debug 是否设置为 false
  2. 在发布模式下构建
  3. 预编译视图

I would suggest ti check as follows

  1. Check if debug in web.config set to false
  2. Build in release mode
  3. Precompiled views
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文