issues
search
zchfeng
/
Front-End-note
1
stars
0
forks
source link
浏览器发起http请求流程
#11
Open
zchfeng
opened
2 years ago
zchfeng
commented
2 years ago
浏览器发起http请求流程
构建请求
查找缓存(包括CDN缓存、本地缓存、http缓存) 优点:减少服务器压力,提升性能
准备IP地址和端口
等待TCP队列 chrom有个机制,同一域名最多同时建立6个TCP连接
建立TCP链接
发送Http请求
返回请求 断开连接 重定向
浏览器发起http请求流程