本文描述了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.
358Please respect copyright.PENANA2I1ou3tcFz
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:358Please respect copyright.PENANABduWiJj6Mb
---------------http response with etag----------------358Please respect copyright.PENANA4HsnTpEJjU
HTTP/1.1 200 OK358Please respect copyright.PENANAG9WRPpVTwA
Date: Mon, 25 Nov 2024 10:56:12 GMT358Please respect copyright.PENANANjGAmuie8F
accept-ranges: bytes358Please respect copyright.PENANAD9F4pUfmfG
ETag: "534231200_1732277116"358Please respect copyright.PENANASulr1oPWJZ
Content-Length: 534231200358Please respect copyright.PENANADG2hRTG0nm
Content-Type: application/octet-stream358Please respect copyright.PENANAUbFu3hTR64
Content-Disposition: attachment; filename="zen.iso"
(http body for the resource)358Please respect copyright.PENANA383AcTnGXn
-----------------------------------------------------
358Please respect copyright.PENANARrE2wOH0E8
Section B. if-none-match
The browser send back the etag to ask server if it has been changed by header like this:358Please respect copyright.PENANAXfBZSoHmgf
-----http request for a cached resource------358Please respect copyright.PENANAJxhwGjHC2t
GET /zen.iso HTTP/1.1358Please respect copyright.PENANAQ3pys7Iuwz
if-none-match: "534231200_1732277116"358Please respect copyright.PENANA6PXyEvhnKt
---------------------------------------------
If the etag is unchanged, the server response like this:
1. for get and head requests:358Please respect copyright.PENANAVwD1r4DyEh
-----------http response for unchanged resource------358Please respect copyright.PENANAVkkF9kHfs2
HTTP/1.1 304 Not Modified
(http body canbe empty, the client will used its cache)358Please respect copyright.PENANAgajP4WkhMW
----------------------------------------------------
2. for other methods requests:358Please respect copyright.PENANA8CbmGcOvmf
-----------http response for unchanged resource------358Please respect copyright.PENANABTR9pHwT41
HTTP/1.1 412 Precondition Failed
(http body canbe empty, the client will used its cache)358Please respect copyright.PENANALPphpeSE32
----------------------------------------------------
358Please respect copyright.PENANAjXesm2oEEC
If the etag changes, the server response 200 OK with the new file content like this:358Please respect copyright.PENANAcLcF73LNRM
---------------http response with etag----------------358Please respect copyright.PENANAKaybpeXLZP
HTTP/1.1 200 OK358Please respect copyright.PENANAe7fc9z7CnM
Date: Mon, 25 Nov 2024 10:56:12 GMT358Please respect copyright.PENANA9pMXKGlrXY
accept-ranges: bytes358Please respect copyright.PENANAuUeJkJYgqZ
ETag: "534231200_1732277116"358Please respect copyright.PENANAXXcsUuu6r5
Content-Length: 534231200358Please respect copyright.PENANAHCpLulBgTz
Content-Type: application/octet-stream358Please respect copyright.PENANAbmEavlhI0S
Content-Disposition: attachment; filename="zen.iso"
(http body for the resource)358Please respect copyright.PENANAyVkgtmY4tU
-----------------------------------------------------
358Please respect copyright.PENANAvpgVNB10zF
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:358Please respect copyright.PENANAUY7x30JPkC
------resume download request-------358Please respect copyright.PENANAekweNcIEhW
GET /zen.iso HTTP/1.1358Please respect copyright.PENANATDTw77kMDF
Range: bytes=287718144-358Please respect copyright.PENANAHfkcKwEClA
If-Match: "534231200_1732277116"358Please respect copyright.PENANAV4z2fyZIpN
-----------------------------------358Please respect copyright.PENANAXnTOJGvUdm
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:358Please respect copyright.PENANAHgzrbc3opU
-------------range response-------------------358Please respect copyright.PENANAgIHanZjL6H
HTTP/1.1 206 Partial Content358Please respect copyright.PENANAcY5wwXNk62
accept-ranges: bytes358Please respect copyright.PENANA8Iy3n23mNO
content-range: bytes 287718144-534231199/534231200358Please respect copyright.PENANAwlRQnxPCGm
ETag: "534231200_1732277116"358Please respect copyright.PENANA2zW8l087kG
Content-Length: 246513056358Please respect copyright.PENANA3THvuP2KVn
Content-Type: application/octet-stream358Please respect copyright.PENANACGq9UyCZMc
Content-Disposition: attachment; filename="zen.iso"
(http body is the remain file content)358Please respect copyright.PENANA8HPpChla9T
-------------------------------------------
If the etag changes, response 412 like this:358Please respect copyright.PENANAOn2RbW30lR
-----------http response for changed resource------358Please respect copyright.PENANAxxVnWIWB6l
HTTP/1.1 412 Precondition Failed
(http body canbe empty, the client will stop downloading the resumed file)358Please respect copyright.PENANAorCl50eQkZ
---------------------------------------------------
358Please respect copyright.PENANAThpox5eUPf
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---358Please respect copyright.PENANAr4CxNzBOOn
GET /zen.iso HTTP/1.1358Please respect copyright.PENANA5DiVralSmr
Range: bytes=287718144-358Please respect copyright.PENANALiA4cWPGnn
If-Range: "534231200_1732277116"358Please respect copyright.PENANAeVw77Fw92h
------------------------------------358Please respect copyright.PENANAqrFJS1iWC8
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:358Please respect copyright.PENANAHlDgvkPDB6
-------------range response-------------------358Please respect copyright.PENANAdDQqdQgyMT
HTTP/1.1 206 Partial Content358Please respect copyright.PENANAleqQ1Es3Ib
accept-ranges: bytes358Please respect copyright.PENANAb8dVwfkG76
content-range: bytes 287718144-534231199/534231200358Please respect copyright.PENANAPC0zfdSq50
ETag: "534231200_1732277116"358Please respect copyright.PENANAMcW4crrQUB
Content-Length: 246513056358Please respect copyright.PENANA9zoK6iqfvs
Content-Type: application/octet-stream358Please respect copyright.PENANAqJDD9XLpCD
Content-Disposition: attachment; filename="zen.iso"
(http body is the remain file content)358Please respect copyright.PENANAFKVi0h3RyO
-------------------------------------------
If the etag changes, response 200 from beginning like this:358Please respect copyright.PENANAUtZzUYGenK
-----------http response from the beginning------358Please respect copyright.PENANAfGVejh3SEt
HTTP/1.1 200 OK358Please respect copyright.PENANAJE6JQTgslV
Date: Mon, 25 Nov 2024 10:56:12 GMT358Please respect copyright.PENANAUYsXyByIP1
accept-ranges: bytes358Please respect copyright.PENANAW3mpkIgtHj
ETag: "534231200_1732277116"358Please respect copyright.PENANAi7b3iHqjue
Content-Length: 534231200358Please respect copyright.PENANAMOhoEVCelT
Content-Type: application/octet-stream358Please respect copyright.PENANAzkMXiZ3yD2
Content-Disposition: attachment; filename="zen.iso"
(http body for the resource)358Please respect copyright.PENANArMgWASfDU3
---------------------------------------------------
358Please respect copyright.PENANA8G9zKVFPZn
Section X. Thanks
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-None-Match358Please respect copyright.PENANA5XGdp4CeSt
https://blog.csdn.net/catoop/article/details/134174653358Please respect copyright.PENANApEk0hF1rOP
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]358Please respect copyright.PENANAxlMOQadFfJ
如果您发现本文有任何错误,或者对本文有好的建议,欢迎与我联系探讨,我的微信: 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.69da2


