Web 性能指标
假设index.html的部分代码为:<script src = "http://a.com/1.js"></script>
<script src = "http://b.com/2.js"></script>
DNS预解析
- 第一种方式
在 index.html 的 里写
- 第二种方式
在index.html的响应头里写
Link: https://abc.com/;rel=dns-prefetch
连接复用
Connection:keep-alive
防止多次开启TCP关闭TCP连接的过程,保持TCP连接一直开启
那两次请求之间要等待多少秒,可以设置时间间隔。超过这个时间就关闭TCP连接