Understanding Chrome network log “Stalled” state

后端 未结 5 990
失恋的感觉
失恋的感觉 2020-11-29 17:10

I\'ve a following network log in chrome:

\"network

I don\'t understand one thing in it: what\'s t

5条回答
  •  暖寄归人
    2020-11-29 17:21

    https://developers.google.com/web/tools/chrome-devtools/network-performance/understanding-resource-timing

    This comes from the official site of Chome-devtools and it helps. Here i quote:

    • Queuing If a request is queued it indicated that:
      • The request was postponed by the rendering engine because it's considered lower priority than critical resources (such as scripts/styles). This often happens with images.
      • The request was put on hold to wait for an unavailable TCP socket that's about to free up.
      • The request was put on hold because the browser only allows six TCP connections per origin on HTTP 1. Time spent making disk cache entries (typically very quick.)
    • Stalled/Blocking Time the request spent waiting before it could be sent. It can be waiting for any of the reasons described for Queueing. Additionally, this time is inclusive of any time spent in proxy negotiation.

提交回复
热议问题