I have web application, which takes long time(10-12 sec) at initial load (esp., the launch page) and gets faster after that less than a 600ms, So how can we improve it ? and What is Waiting Time when a website load in broswer ? enter image description here

The site is build upon ASP.net and Microsoft SQL Server database.

有帮助吗?

解决方案

It looks like you're using Firefox/Firebug. You can check the Firebug wiki for a definition of the different request phases. (Other browsers have similar names.)

In your case, Waiting reflects the time between request and response, as Brad mentioned. That row you highlighted shows a wait of 12.66s for the server to start responding, then just 6ms spent receiving the data.

To resolve that you'll need to debug within your application itself. Tools like YSlow and PageSpeed are good for the front-end components (JS, CSS, images, etc.) but won't help you diagnose the initial page load speed directly.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top