What is meaning of 'Blocking' in Firebug Net Panel?

后端 未结 4 2225
野趣味
野趣味 2020-12-23 17:11

I\'m using Firebug 1.5.2 and while testing a site before production release i can see a huge amount of time consumed by \'Blocking\' parts of the requests.

What exa

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-23 18:11

    "Blocking" previously (earlier versions of FireBug) was called "Queuing". It actually means that request is sitting in queue waiting for available connection. As far as I know number of persistent connections by default is limited in last versions of Firefox to 6, IE8 also 6. Earlier it was only 2. It can be changed by user in browser settings.
    Also as I know that while javascript file is loading, all other resources (css, images) are blocked

提交回复
热议问题