I have an ASP.NET MVC app that is using the AreaViewEngine proposed by Phil Haack here. It works fine, but the app seems kind of sluggish, so I was doing some profiling using dotTrace. I pushed the app to our dev server, changed the debug flag to false in web.config (compilation debug="false"), started up the profiler, and used jmeter to generate a few thousand hits. What I found is listed below:

Notice how VirtualPathProviderViewEngine.FindPartialView took over 320 seconds. I'm unable to drill down any farther to see what underlying code is causing the problem, but I suspect it's related to the issue mentioned here.
The blog specifically states that running in release mode will cause view path resolution to be cached, but this doesn't seem to be the case (or if it is, something else is taking a hell of a lot of time within the FindPartialView function.
Any thoughts?
Edit:
I never did find the cause of the problem, but I ended up downloading the MVC source code for release 1.0 and it works fine. Must be a discrepancy between the installable binary and the source code for v1.0. or something borked with my install (though the issue manifested itself on multiple machines).
