在chrome dev工具中,网络限制的每个预设选项的速度是多少?

时间:2018-01-21 13:01:10

标签: google-chrome

自最近更新Chrome以来,预设不再标有带宽。 bandwidth presets

Chrome用于列出每个人的实际速度,因此您可以简单地说出来。

此处的选项代表什么带宽或延迟?

5 个答案:

答案 0 :(得分:13)

我在互联网上进行了两次速度测试。使用以下自定义配置文件,我收到与预设相似的下载速度和ping延迟。

慢速3G定制:下载376 kb / s,延迟2000 ms
快速3G定制:下载1500 kb / s = 1.5 Mb / s,延迟= 550 ms

通过速度测试测量的实际下载速度仅略低于配置值。测量的ping延迟是自定义配置文件中配置的值的一半。

答案 1 :(得分:11)

这是旧屏幕截图,其中包含详细信息Here is an old screenshot with the details

答案 2 :(得分:5)

这是Robroi2000的答案的屏幕截图中的值的csv

Preset,download(kb/s),upload(kb/s),RTT(ms)
GPRS,50,20,500
Regular 2G,250,50,300
Good 2G,450,150,150
Regular 3G,750,250,100
Good 3G, 1000,750,40
Regular 4G, 4000,3000,20
DSL 2000, 1000,5
WiFi 30000,150000,2

答案 3 :(得分:5)

From Chrome DevTools’ source code,以下是预设:

/** @type {!Conditions} */
export const OfflineConditions = {
  title: Common.UIString.UIString('Offline'),
  download: 0,
  upload: 0,
  latency: 0,
};

/** @type {!Conditions} */
export const Slow3GConditions = {
  title: Common.UIString.UIString('Slow 3G'),
  download: 500 * 1024 / 8 * .8,
  upload: 500 * 1024 / 8 * .8,
  latency: 400 * 5,
};

/** @type {!Conditions} */
export const Fast3GConditions = {
  title: Common.UIString.UIString('Fast 3G'),
  download: 1.6 * 1024 * 1024 / 8 * .9,
  upload: 750 * 1024 / 8 * .9,
  latency: 150 * 3.75,
};

答案 4 :(得分:0)

如果有人想知道在连接上下载/上传 1 MB 需要多长时间,以下是基于 Roboroi's Screenshot

的结果

下载 1 MB 的时间

(1MB = 8Mb = 1024 Bytes = 8192 bits)

CONNECTION TYPE                       DOWNLOAD_TIME      UPLOAD TIME

Regular 2G (250Kb/s⬇ 50Kb/s⬆) ->       33s                163 (2m 43s)
Good 2G (450Kb/s⬇ 150Kb/s⬆) ->         18s                54s
Regular 3G (750Kb/s⬇  250Kb/s⬆) ->     11s                32s
Good 3G (1Mb/s⬇ 750Kb/s⬆) ->           8s                 11s
Regular 4G (4Mb/s⬇ 3Mb/s⬆) ->          2s                 3s
Wifi (30Mb/s⬇ 15Mb/s⬆) ->              0.27s              0.53s