http protocol
Head-of-Line Blocking in QUIC and HTTP/3: The Details
HTTP/2.0 Header Compression(上)
http structure
- start line: GET /background.png HTTP/1.1
- Header:
- provide extra message
- tell the brower do sth(cache)
- body: json, xml,etc.
content-type
content-type | |
---|---|
x-www-form-urlencoded | application/x-www-form-urlencoded |
form-data | multipart/form-data; boundary={boundary string} |
cache-control
load local cache directly
cache-control, expire before the time, it will load local;
cache-control:
- public: allow proxy to cache the data(default value)
- private: only local browser can cache the data
- no-cache: it must go through valiation with origin server;
- no-store: can’t cache
- max-age=xxx;
validate the resource from server
If-Modified-Since: compare resource time If-None-Match: compare resource ta ;
if same, return 304; otherwise 200
http2
what:
- multiplex: add http2 frame heade
- header compresee:small size header
multiplex
Head-of-Line Blocking: 队列前部阻塞后部
why: http 基于content-length来区分消息的边界, 这要求数据必须是串行的
solve: http2 frame,
- 基于frame id and flag分割消息
- 不同资源被交叉发送
http2 frame header:
frame filed:
- Stream Identifier
- type:
- data: 0x0
- headers 0x1
- flags:
- END_STREAM
- END_HEADERS
example: a.js 2byte b.js 2byte header frame1, data frame1 header frame1, data frame2 data frame1, data frame2
![[Pasted image 20221220164804.png]]
mutiplex strategy: 1111, 2222
- fair:12121212
- 加权(2权重是1两倍): 22122122111
heder compression
使用index代替字段 header.key, header
|
|
huffman coding:
|
|
http keep alive
what: http 未关闭 tcp connection 而 让 tcp connection alive
http keep alive 基于 tcp-keep-alive 实现的吗: http 未关闭 tcp connection,此时 tcp 短时间 就是alive, 长时间的alive 才需要 tcp keep alive
restful api
what: REpresentational State Transfer, 表现层状态转移 是一种架构风格, 遵循一定的指导原则与约束
restful vs http: restful 不一定 基于http 实现, 基于 http实现 叫做: HTTP-based RESTful API
methods:
- Create — POST
- Read/Retrieve — GET
- Update — PUT/PATCH
- Delete — DELETE
example
|
|
URL , URI
URI: A Uniform Resource Identifier URL : A Uniform Resource Locator, schema+URI