本文描述了HTTP协议使用Etag对内容进行缓存以便减少不必要的网络传输以提高运行效率的机制。后面用英文写,但我的英文不太好,如有错误之处,希望大家帮我纠正,我的联系方式在后面。
This article describes the HTTP procotol mechanism of using Etag to cache resources and resume file download in order to reduce unnecessory network transfer so the performance can increase.
370Please respect copyright.PENANAq95tLXdCXf
Section A. ETag
Etag is an identity of a resource, for example, we can use "10000_20241125150500" as the identity of a file where 10000 is the file size and 20241125150500 is the last modifed time of the file. We tell client browsers the etag of a file, then the browser cache the file and its etag, when next time the file is requested again, the browser can first just send the etag of the file to server, and if the server find the etag remain unchanged, then the browser can use the cache, no need to get the file from server once again.
The server send the etag of a resource by header like this:370Please respect copyright.PENANAe6bYyIyZxC
---------------http response with etag----------------370Please respect copyright.PENANAPzsOTislxi
HTTP/1.1 200 OK370Please respect copyright.PENANALGUYNkijGE
Date: Mon, 25 Nov 2024 10:56:12 GMT370Please respect copyright.PENANA3QTzzrM40l
accept-ranges: bytes370Please respect copyright.PENANAc0ePnSXTf7
ETag: "534231200_1732277116"370Please respect copyright.PENANAKWGRBzuMGz
Content-Length: 534231200370Please respect copyright.PENANAT4IYymBZGe
Content-Type: application/octet-stream370Please respect copyright.PENANAg1Z09AVrzq
Content-Disposition: attachment; filename="zen.iso"
(http body for the resource)370Please respect copyright.PENANAcftQpogiOu
-----------------------------------------------------
370Please respect copyright.PENANAyBNQXxE4uz
Section B. if-none-match
The browser send back the etag to ask server if it has been changed by header like this:370Please respect copyright.PENANAx0qrmTUVu2
-----http request for a cached resource------370Please respect copyright.PENANAbVVFjKFHDH
GET /zen.iso HTTP/1.1370Please respect copyright.PENANA6JUAyuMEiC
if-none-match: "534231200_1732277116"370Please respect copyright.PENANAyziifjKDb6
---------------------------------------------
If the etag is unchanged, the server response like this:
1. for get and head requests:370Please respect copyright.PENANAYPTOCU22zt
-----------http response for unchanged resource------370Please respect copyright.PENANAP3XhiFjAff
HTTP/1.1 304 Not Modified
(http body canbe empty, the client will used its cache)370Please respect copyright.PENANAcGOAnR8IPN
----------------------------------------------------
2. for other methods requests:370Please respect copyright.PENANAM2pZueZkn0
-----------http response for unchanged resource------370Please respect copyright.PENANAWPecswzaJ9
HTTP/1.1 412 Precondition Failed
(http body canbe empty, the client will used its cache)370Please respect copyright.PENANAbpN5x95paD
----------------------------------------------------
370Please respect copyright.PENANAMToRkbBfVs
If the etag changes, the server response 200 OK with the new file content like this:370Please respect copyright.PENANAiJiX5nAoji
---------------http response with etag----------------370Please respect copyright.PENANA5TQKULPxYr
HTTP/1.1 200 OK370Please respect copyright.PENANAsxqal6xKCc
Date: Mon, 25 Nov 2024 10:56:12 GMT370Please respect copyright.PENANAfDeaBk0LcC
accept-ranges: bytes370Please respect copyright.PENANAQtHs628HIu
ETag: "534231200_1732277116"370Please respect copyright.PENANAuJAq2RAhHR
Content-Length: 534231200370Please respect copyright.PENANAJtUmc8kHpE
Content-Type: application/octet-stream370Please respect copyright.PENANANkA29BwJF1
Content-Disposition: attachment; filename="zen.iso"
(http body for the resource)370Please respect copyright.PENANA1Q0W5xpKDr
-----------------------------------------------------
370Please respect copyright.PENANAkHLBZJIU9X
Section C. if-match
When resuming a download in the browser download manager, the browser sends a range request with the if-match header like this:370Please respect copyright.PENANACe74NSL1lI
------resume download request-------370Please respect copyright.PENANAzJmuljPSJ8
GET /zen.iso HTTP/1.1370Please respect copyright.PENANA84bZR8FJGJ
Range: bytes=287718144-370Please respect copyright.PENANAOcw4h0Cy6N
If-Match: "534231200_1732277116"370Please respect copyright.PENANAqPNX1Uud9Y
-----------------------------------370Please respect copyright.PENANAueQc66mhNe
It tells the server to check the etag in If-Match, if unchanged, resume to get the remain content; otherwise, return 412 Precondition Failed.
The server response for unchanged etag is like this:370Please respect copyright.PENANAbpFkT9teOB
-------------range response-------------------370Please respect copyright.PENANAhVHGPbZvfp
HTTP/1.1 206 Partial Content370Please respect copyright.PENANAPvC3213DSV
accept-ranges: bytes370Please respect copyright.PENANAhi3srKuXHw
content-range: bytes 287718144-534231199/534231200370Please respect copyright.PENANAq7hhcyUeQA
ETag: "534231200_1732277116"370Please respect copyright.PENANAE99qvEBC8X
Content-Length: 246513056370Please respect copyright.PENANA78MkJGBwj6
Content-Type: application/octet-stream370Please respect copyright.PENANAQsoytbBzWY
Content-Disposition: attachment; filename="zen.iso"
(http body is the remain file content)370Please respect copyright.PENANAFZnDTdTw9D
-------------------------------------------
If the etag changes, response 412 like this:370Please respect copyright.PENANAav4cNmetcu
-----------http response for changed resource------370Please respect copyright.PENANALOyaKbZUO6
HTTP/1.1 412 Precondition Failed
(http body canbe empty, the client will stop downloading the resumed file)370Please respect copyright.PENANAsxxlgHIzHA
---------------------------------------------------
370Please respect copyright.PENANAHF9vwNUTpB
Section D. if-range
If-Range is similar with If-Match, it's used by chrome when resuming a download in the download manager, whereas firefox use If-Match. They are the same except that when the etag changes, if-range response the resource content from beginning, so the resumed download will start downloading from beginning, while if-match just response the 412 error to stop the resumed download. I think chrome do a better job.
---resume download request by chrome---370Please respect copyright.PENANAk8WdHGMDUE
GET /zen.iso HTTP/1.1370Please respect copyright.PENANAAo1Wg6OIo7
Range: bytes=287718144-370Please respect copyright.PENANAdyGs7AlJvy
If-Range: "534231200_1732277116"370Please respect copyright.PENANAYoupYEjCCT
------------------------------------370Please respect copyright.PENANAAAV1N6nDKp
It tells the server to check the etag in If-Range, if unchanged, resume to get the remain content; otherwise, return 200 OK and the file content from the beginning.
The server response for unchanged etag is like this:370Please respect copyright.PENANAO73xhccsiR
-------------range response-------------------370Please respect copyright.PENANAS2xC0TWyrV
HTTP/1.1 206 Partial Content370Please respect copyright.PENANAxYkYjfH1gF
accept-ranges: bytes370Please respect copyright.PENANA6AmNwcKzXy
content-range: bytes 287718144-534231199/534231200370Please respect copyright.PENANA2ZxxYIQvmX
ETag: "534231200_1732277116"370Please respect copyright.PENANAburCh6ryaC
Content-Length: 246513056370Please respect copyright.PENANAJVlDA8CMVs
Content-Type: application/octet-stream370Please respect copyright.PENANAkw9OnCfijv
Content-Disposition: attachment; filename="zen.iso"
(http body is the remain file content)370Please respect copyright.PENANAa8jp44QiFK
-------------------------------------------
If the etag changes, response 200 from beginning like this:370Please respect copyright.PENANAWSfkeuw74C
-----------http response from the beginning------370Please respect copyright.PENANAGNRKsC9A9W
HTTP/1.1 200 OK370Please respect copyright.PENANApNMMMgICQm
Date: Mon, 25 Nov 2024 10:56:12 GMT370Please respect copyright.PENANABXpl1gRRMo
accept-ranges: bytes370Please respect copyright.PENANAmmE4CleSyI
ETag: "534231200_1732277116"370Please respect copyright.PENANAQRcJkQqckC
Content-Length: 534231200370Please respect copyright.PENANAuLHjZsYqP0
Content-Type: application/octet-stream370Please respect copyright.PENANA6NyKuV8JI9
Content-Disposition: attachment; filename="zen.iso"
(http body for the resource)370Please respect copyright.PENANAKdAYLqLmKC
---------------------------------------------------
370Please respect copyright.PENANAf4KRfEbQW9
Section X. Thanks
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-None-Match370Please respect copyright.PENANABQcnyQSRJL
https://blog.csdn.net/catoop/article/details/134174653370Please respect copyright.PENANAppwNK88h2q
https://blog.csdn.net/phker/article/details/50722619
Section Y. Contacts Me
If you found any errors or have any suggestions for this article, please let me know, my wechat: si_jinmin, my email: [email protected]370Please respect copyright.PENANA3LPIiz4pfw
如果您发现本文有任何错误,或者对本文有好的建议,欢迎与我联系探讨,我的微信: si_jinmin, 我的email: [email protected]
如果您對C/C++ Programming, Linux, HTTP Protocol, Website Development, Vue, Git, VsCode感興趣,邀請您加入「Linux/C/C++ Website Development」微信群,請加我的微信(si_jinmin)以便拉您进群。
ns216.73.216.253da2


