When i gave the HEAD request for a file i got ETAG header as follows:
ETag: “49a81-3f-4c049ee89a31b”
In this the first part is Inode what are the other fields
Could anyone tell me. Thanks in advance
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
From wikipedia i got this information:
An ETag is an opaque identifier assigned by a web server to a specific version of a resource found at a URL. If the resource content at that URL ever changes, a new and different ETag is assigned. Used in this manner ETags are similar to fingerprints, and they can be quickly compared to determine if two versions of a resource are the same or not.
Comparing ETags only makes sense with respect to one URL—ETags for resources obtained from different URLs may or may not be equal. So no meaning can be inferred from their comparison.
To my knowledge etag is used to check the files has been modified since download.
In your Etag the parts may represent: inode-file_size-last_modified_time may be used. I am not sure about it.
And moreover the post by david has more information. Follow that too. Those information are really good and useful.