How can I optimize MVC and IIS pipeline to obtain higher speed?

Posted by Andy on Stack Overflow See other posts from Stack Overflow or by Andy
Published on 2010-02-23T18:18:12Z Indexed on 2011/01/15 11:53 UTC
Read the original article Hit count: 212

Filed under:
|
|

Hi, I am doing performance tweaking of a simple app that uses MVC on IIS 7.5. I have a StopWatch starting up in Application_BeginRequest and I take a snapshot at Controller.OnActionExecuting.

So I measure the time spend in the entire IIS pipeline: from request receipt to the moment execution finally gets to my controller.

I obtain 700 microseconds on my 3GHz quad-core (project compiled Release x64), and I wonder where the bottleneck is, especially hearing some people say that one can get up to 8000 page loads per second with MVC.

How can I optimize MVC and IIS pipeline to obtain higher speed?

© Stack Overflow or respective owner

Related posts about mvc

Related posts about iis7