Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

latency measurement in Chrome network tab

I'm running my app on my local machine and I'm making ajax requests from Chrome. When I make a request, I see that the network tab shows 2 numbers in the Time column.

enter image description here

How should I interpret these numbers? The app is making a database call and then processes the data before sending it to the client. On the first row, it shows 133/106; does this mean that once the requests hits the local machine it only takes 27ms to process on the server?

Thanks.

like image 808
frenchie Avatar asked Jul 07 '12 16:07

frenchie


1 Answers

Latency, the time between making the request and the server's first response, is shown in the lighter shade within each bar.

106ms is Latency. 133ms is Time. 27ms is receive data time.

like image 78
Shuxiang Avatar answered Sep 23 '22 10:09

Shuxiang