Out of the box, mini-profiler added to an MVC3 site reports a step called Find: Index, where Index is the viewName parameter set in the controller's call to View(). The first time a view is hit this step can easily take over a second, then it's negligible for all subsequent calls.
What's going on here? I assume that mini-profiler is guilty of poorly choosing or adopting the name for this step because it surely can't take a second to find anything, certainly specifying the view's full file path and name doesn't make any difference, so it's not find in that sense. Setting MvcBuildViews true doesn't help either.