We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTTP协议,基于TCP的一个传输协议。针对前端而言,一般有如下性能指标:
浏览器阻塞:对于同一个域名,同时只能有4个连接(因浏览器内核而异) http://www.stevesouders.com/blog/2008/03/20/roundup-on-parallel-connections/ https://sanonz.github.io/2018/http-max-persistent-connections-per-server/
DNS查询:浏览器知道目标浏览器的IP才能建立连接,DNS查询是一个递归的过程。DNS缓存,CDN服务器返回最近的IP地址
建立连接:三次握手才能建立连接,才能携带请求报文
http1.1
https
spdy/http2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
HTTP协议,基于TCP的一个传输协议。针对前端而言,一般有如下性能指标:
浏览器阻塞:对于同一个域名,同时只能有4个连接(因浏览器内核而异)
http://www.stevesouders.com/blog/2008/03/20/roundup-on-parallel-connections/
https://sanonz.github.io/2018/http-max-persistent-connections-per-server/
DNS查询:浏览器知道目标浏览器的IP才能建立连接,DNS查询是一个递归的过程。DNS缓存,CDN服务器返回最近的IP地址
建立连接:三次握手才能建立连接,才能携带请求报文
http1.1
https
spdy/http2
The text was updated successfully, but these errors were encountered: