ASP.NET MVC 3 预编译

发布于 2024-10-15 14:05:58 字数 101 浏览 2 评论 0原文

当我第一次从 ASP.NET MVC 3 网站请求页面时,它似乎遇到了延迟,但在后续请求中,它是瞬时的。我在页面上没有缓存,因此第二个请求是从服务器中提取的。有没有办法预加载整个应用程序?

When I first request pages from my ASP.NET MVC 3 website it appears to suffer a delay, but on subsequent requests it is instantaneous. I have no caching on pages so the second request is pulled from the server. Is there any way to preload the whole app?

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

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

发布评论

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

评论(2

蹲墙角沉默 2024-10-22 14:05:58

有一个新的 自动启动 IIS 7.5 和 ASP.NET 4.0 中的功能,允许您在服务器启动时加载所有应用程序内存,从而避免延迟。对于所有以前的版本,您可以在服务器启动时安排自动请求,以便将应用程序加载到内存中,以便后续请求更快。

There is a new Auto-Start feature in IIS 7.5 and ASP.NET 4.0 which allows you to load all application sin memory when the server starts thus avoiding the delay. For all previous versions you could schedule an automated request when the server starts in order to load the application in memory so that subsequent requests be faster.

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