What does time and latency mean in webkit inspector?

What does time and latency mean in the context of webkit inspector?

enter image description here

+4
source share
2 answers

Time - the total duration, starting from the beginning of the request until receiving from the last byte in the response. Delay is the time to load the first byte in the response.

https://developers.google.com/chrome-developer-tools/docs/network

+5
source

I believe that time is the total time it takes to run a literal site code added with a delay, while a delay is the delay received when sending the specified code information via the Internet.

+1
source

Source: https://habr.com/ru/post/1495840/


All Articles