-
Notifications
You must be signed in to change notification settings - Fork 0
http2
2012 edited this page Jul 20, 2020
·
4 revisions
知识点
http/1.x 的问题
- domain sharding
- head of line blocking
- 多个 tcp 连接
- Header 不像 body,它不会被压缩。
http2 的功能:(nghttp2 分析请求头信息)
- is binary, instead of textual
- is fully multiplexed, instead of ordered and blocking
- can therefore use one connection for parallelism
- uses header compression to reduce overhead
- allows servers to “push” responses proactively into client caches
- static Huffman code(曾被攻击,后引入了 HPACK 算法)
- HPACK
只限同域资源推送
资料学习
JS
CSS
- float
- BFC
- position
- flex
- grid
DOM
- DOM
- how browser works
Node.js
react
- 生命周期
- setState
- hook
git
- git 基础命令
- git rebase 理解
- git bisect
- git commit
- git hook
设计模式
- 策略模式
- ...
TCP/IP 协议
- HTTP/1.x
- HTTP/2
- SSL/TLS
- TCP
- DNS
- HTTP Cache
- CORS
- http status code
linux(shell)知识点