Whenever I was debugging my ASP.NET MVC application the wait times for every page is about 8 seconds. This was not happening after deployment to a webserver (thank god!)
Today I discovered that disabling the browserlink will speed things up for me. I’ve read this Article about setting the vs:EnableBrowserlink to false in the web.config. The first request is still slow, but that is how ASP.NET MVC works. After that every page loads fast and without any delay.
What else did I do? EnableOptimizations in debug, since I don’t develop scripts, I only use them.