We have a pretty big ASP.NET WebForm (web application) project with a lot of references to other libraries, other projects etc and most of the time after a compilation, the first time we load a page it takes a LONG time before rendering anything... Disk IO is the main problem. For small projects it's nearly instantaneous, but once your project gets large, it can really slow development and remove fun from programming.
My question: Does first page load time after a compilation is has slow in ASP.NET MVC as it is in ASP.NET Webforms for big projects?
Thanks,