Chrome hangs after certain amount of data transfered - waiting for available socket

前端 未结 6 2094
抹茶落季
抹茶落季 2020-11-28 19:41

I\'ve got a browser game and I have recently started adding audio to the game.

Chrome does not load the whole page and gets stuck at \"91 requests | 8.1 MB tr

6条回答
  •  萌比男神i
    2020-11-28 20:10

    Chrome is a Chromium-based browser and Chromium-based browsers only allow maximum 6 open socket connections at a time, when the 7th connection starts up it will just sit idle and wait for one of the 6 which are running to stop and then it will start running. Hence the error code ‘waiting for available sockets’, the 7th one will wait for one of those 6 sockets to become available and then it will start running.

    You can either

      1. Clear browser cache & cookies (https://geekdroids.com/waiting-for-available-socket/#1_Clear_browser_cache_cookies)
      1. Flush socket pools (https://geekdroids.com/waiting-for-available-socket/#2_Flush_socket_pools)
      1. Flush DNS (https://geekdroids.com/waiting-for-available-socket/#3_Flush_DNS)

提交回复
热议问题