Internet Explorer 网络开发人员工具长间隔时间
Internet Explorer network developer tools long Gap time
我正在优化网页。页面在 Chrome 中加载大约需要 5 秒,但在 IE11 中需要 15 秒。查看 IE 开发者工具的网络选项卡显示,它在 Gap 中花费了 12 秒。
我的问题是什么是 Gap 以及 Gap 期间正在做什么?我知道它在 IE 中被描述为 "the time between completion of this request and the page being loaded",但我不确定那是什么意思。
Gap Timing定义在Using Windows Internet Explorer Developer Tools Network Capture:
The offset value that is taken when the response has been received. The duration is the time between that start time and when the end of the last request is associated with the original HTTP request.
Chris Bowen 博客上的旧资源 defined it more concisely:
Gap – Time between response completion to page load event.
因此,间隔是接收到的最后一个字节与加载事件之间发生的时间量。一旦接收到最后一个字节,浏览器可能会请求其他资源。 load 事件只有在所有图像都加载完毕后才会触发
如果此资源在线,我(我敢肯定这里的其他人)很乐意帮助您进一步确定您的绩效和响应能力方面的瓶颈。
我正在优化网页。页面在 Chrome 中加载大约需要 5 秒,但在 IE11 中需要 15 秒。查看 IE 开发者工具的网络选项卡显示,它在 Gap 中花费了 12 秒。
我的问题是什么是 Gap 以及 Gap 期间正在做什么?我知道它在 IE 中被描述为 "the time between completion of this request and the page being loaded",但我不确定那是什么意思。
Gap Timing定义在Using Windows Internet Explorer Developer Tools Network Capture:
The offset value that is taken when the response has been received. The duration is the time between that start time and when the end of the last request is associated with the original HTTP request.
Chris Bowen 博客上的旧资源 defined it more concisely:
Gap – Time between response completion to page load event.
因此,间隔是接收到的最后一个字节与加载事件之间发生的时间量。一旦接收到最后一个字节,浏览器可能会请求其他资源。 load 事件只有在所有图像都加载完毕后才会触发
如果此资源在线,我(我敢肯定这里的其他人)很乐意帮助您进一步确定您的绩效和响应能力方面的瓶颈。