0

When I run my ASP MVC site locally, or in the same LAN the response time is immediate. However on production the response time is considerably slow (2-3 seconds for each request). When I connect using remote desktop to the server and run the site locally - response time is very good.

For other sites on the same server, response time is good.

What can be done to accelerate ASP MVC site response time?

(I guess that there are several factors)

tereško
  • 58,060
  • 25
  • 98
  • 150
Aviko
  • 1,139
  • 12
  • 21
  • 2
    Do you use Firebug "network tab" to see which requests takes times ? – Hassan Sep 06 '12 at 09:04
  • Excellent point by @Massanu, and essential in finding out what resource is causing the block. There is nothing you can do, given the information you've provided, to speed it up as there is not likely a problem with ASP.NET, but more likely your host and/or environment. Internet Explorer and Chrome also have "Developer Tools" built in, just hit F12 and pop into the network tab to see what's going on. – MisterJames Sep 06 '12 at 16:18

1 Answers1

1

It sounds like it's not your code but your web host that's the issue.

Glimpse and Fiddler might show an issue, but it's probably worth working through the points in Muhammad Akhtar's SO post first. It looks like the final solution in that post was to upgrade the production server's processor.

Community
  • 1
  • 1
Neil Thompson
  • 6,356
  • 2
  • 30
  • 53