我的 ASP MVC 4 Web 应用程序中有一些视图需要几秒钟才能呈现。我已经安装了 MiniProfiler 来分析控制器和 Razor 视图。在我的一种观点中,我看到了以下结果:
duration (ms) from start (ms)
http://localhost:51405/Surveys/Details/201306... 4.8 +0.0
Controller: SurveysController.Details 2.2 +4.4
GetViewRows survey_with_tenant 6.1 +4.5
GetDocuments 5.7 +11.4
GetViewRows employees_by_surveyid 33.2 +17.2
GetDocuments 7.3 +51.4
Render : Details 1015.9 +59.4 <--- This is the problem
Render partial: _LoginPartial 2.6 +450.2
倒数第二行显示渲染 Details Razor 视图需要 1015 毫秒。其中使用的部分耗时 2.6 秒,还有其他部分,但它们甚至低于 1 毫秒。
如何进一步调查需要 1 秒以上的渲染时间?