本文描述了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.
371Please respect copyright.PENANAWhDMBPHoGL
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:371Please respect copyright.PENANAQSIykI1JWQ
---------------http response with etag----------------371Please respect copyright.PENANAGRfQCNIdFp
HTTP/1.1 200 OK371Please respect copyright.PENANASOwEfmjmLH
Date: Mon, 25 Nov 2024 10:56:12 GMT371Please respect copyright.PENANA8Eaxhsb4nT
accept-ranges: bytes371Please respect copyright.PENANAzEjTIyFMRA
ETag: "534231200_1732277116"371Please respect copyright.PENANAQ5e5K7TVK7
Content-Length: 534231200371Please respect copyright.PENANAZywabOCPFp
Content-Type: application/octet-stream371Please respect copyright.PENANAocnNZNTlIH
Content-Disposition: attachment; filename="zen.iso"
(http body for the resource)371Please respect copyright.PENANAVlfDAk52Qy
-----------------------------------------------------
371Please respect copyright.PENANAjMrDnqT0e8
Section B. if-none-match
The browser send back the etag to ask server if it has been changed by header like this:371Please respect copyright.PENANAF3kyXtKnD6
-----http request for a cached resource------371Please respect copyright.PENANAnTv9iaC9Xv
GET /zen.iso HTTP/1.1371Please respect copyright.PENANAfPU4kjHnbR
if-none-match: "534231200_1732277116"371Please respect copyright.PENANAty85NLjrkC
---------------------------------------------
If the etag is unchanged, the server response like this:
1. for get and head requests:371Please respect copyright.PENANAIN7xzay86C
-----------http response for unchanged resource------371Please respect copyright.PENANAUIopI0Fnxg
HTTP/1.1 304 Not Modified
(http body canbe empty, the client will used its cache)371Please respect copyright.PENANAG2fdjzYjeT
----------------------------------------------------
2. for other methods requests:371Please respect copyright.PENANAm2ZpypEyOU
-----------http response for unchanged resource------371Please respect copyright.PENANAWmiiiqrkzy
HTTP/1.1 412 Precondition Failed
(http body canbe empty, the client will used its cache)371Please respect copyright.PENANAg5ZxRhI97E
----------------------------------------------------
371Please respect copyright.PENANAT2YQKfEUg3
If the etag changes, the server response 200 OK with the new file content like this:371Please respect copyright.PENANAuY1JfIv2gz
---------------http response with etag----------------371Please respect copyright.PENANAUx9oCjlskR
HTTP/1.1 200 OK371Please respect copyright.PENANAJZcRYj0ijf
Date: Mon, 25 Nov 2024 10:56:12 GMT371Please respect copyright.PENANAoi3ZS3BytA
accept-ranges: bytes371Please respect copyright.PENANA861gmR0NCR
ETag: "534231200_1732277116"371Please respect copyright.PENANAFp4Jv5pAwW
Content-Length: 534231200371Please respect copyright.PENANAtlLyM6nzeN
Content-Type: application/octet-stream371Please respect copyright.PENANAfFdBp39DgL
Content-Disposition: attachment; filename="zen.iso"
(http body for the resource)371Please respect copyright.PENANA1MxAPZTuki
-----------------------------------------------------
371Please respect copyright.PENANAzmnQOpXDsz
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:371Please respect copyright.PENANAxG0georCli
------resume download request-------371Please respect copyright.PENANA0o5pPvGbHv
GET /zen.iso HTTP/1.1371Please respect copyright.PENANAAOZkvW0ug3
Range: bytes=287718144-371Please respect copyright.PENANArWEKyouITr
If-Match: "534231200_1732277116"371Please respect copyright.PENANAhAVcslPpdC
-----------------------------------371Please respect copyright.PENANAAKLjgqN1jj
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:371Please respect copyright.PENANAc4kRyWfd1A
-------------range response-------------------371Please respect copyright.PENANAnhD57vXq5A
HTTP/1.1 206 Partial Content371Please respect copyright.PENANA8dTSgvPxR6
accept-ranges: bytes371Please respect copyright.PENANAAMsncdaQvs
content-range: bytes 287718144-534231199/534231200371Please respect copyright.PENANAPPblu5xBjG
ETag: "534231200_1732277116"371Please respect copyright.PENANAdzypmkLE37
Content-Length: 246513056371Please respect copyright.PENANAoivSiF4Lxd
Content-Type: application/octet-stream371Please respect copyright.PENANAz9q2PAQvo1
Content-Disposition: attachment; filename="zen.iso"
(http body is the remain file content)371Please respect copyright.PENANA7T6YH0TuiZ
-------------------------------------------
If the etag changes, response 412 like this:371Please respect copyright.PENANA8lkkEW5Xjn
-----------http response for changed resource------371Please respect copyright.PENANAXXvRHn0HVO
HTTP/1.1 412 Precondition Failed
(http body canbe empty, the client will stop downloading the resumed file)371Please respect copyright.PENANA4212s2nEai
---------------------------------------------------
371Please respect copyright.PENANAeqRpidNQF4
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---371Please respect copyright.PENANAYuy7VKBIYo
GET /zen.iso HTTP/1.1371Please respect copyright.PENANAhp3sBpL2qG
Range: bytes=287718144-371Please respect copyright.PENANAitAGNAdM5h
If-Range: "534231200_1732277116"371Please respect copyright.PENANA4F35BGT2zF
------------------------------------371Please respect copyright.PENANAq2w3qYfGym
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:371Please respect copyright.PENANAUIaOhLfRrF
-------------range response-------------------371Please respect copyright.PENANAouZgnEya0w
HTTP/1.1 206 Partial Content371Please respect copyright.PENANATSLZUIbkTL
accept-ranges: bytes371Please respect copyright.PENANAt3B7vhWn0D
content-range: bytes 287718144-534231199/534231200371Please respect copyright.PENANA7F8GFtNkUY
ETag: "534231200_1732277116"371Please respect copyright.PENANA7sd2qamm2O
Content-Length: 246513056371Please respect copyright.PENANAVmh8CeFfdi
Content-Type: application/octet-stream371Please respect copyright.PENANA847BRBBzi4
Content-Disposition: attachment; filename="zen.iso"
(http body is the remain file content)371Please respect copyright.PENANAjHiiSmDM1d
-------------------------------------------
If the etag changes, response 200 from beginning like this:371Please respect copyright.PENANADDAA9nmVNx
-----------http response from the beginning------371Please respect copyright.PENANASJkPDxgrOs
HTTP/1.1 200 OK371Please respect copyright.PENANAMS4ACoFeFR
Date: Mon, 25 Nov 2024 10:56:12 GMT371Please respect copyright.PENANAHHb8735tgy
accept-ranges: bytes371Please respect copyright.PENANAl40TrhcY0S
ETag: "534231200_1732277116"371Please respect copyright.PENANACTTkOIgCTh
Content-Length: 534231200371Please respect copyright.PENANApLUTCWrAzr
Content-Type: application/octet-stream371Please respect copyright.PENANAyUAhnt9HXm
Content-Disposition: attachment; filename="zen.iso"
(http body for the resource)371Please respect copyright.PENANAJsyXHawLKC
---------------------------------------------------
371Please respect copyright.PENANAQQDwQI2BsZ
Section X. Thanks
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-None-Match371Please respect copyright.PENANAgIBqox3G3T
https://blog.csdn.net/catoop/article/details/134174653371Please respect copyright.PENANAYM2qfAIlHq
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]371Please respect copyright.PENANAJnm2kUlBLT
如果您发现本文有任何错误,或者对本文有好的建议,欢迎与我联系探讨,我的微信: 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


