Difference between revisions of "HTTP ETag"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Created page with "The '''ETag''' or '''entity tag''' is part of HTTP, the protocol for the World Wide Web. == Web cache validation == The ETag is one of several mechanisms that HTTP p...")
 
(External links)
Line 27: Line 27:
  
 
* [https://en.wikipedia.org/wiki/HTTP_ETag HTTP ETag] @ Wikipedia
 
* [https://en.wikipedia.org/wiki/HTTP_ETag HTTP ETag] @ Wikipedia
 +
 +
[[Category:Computing]]
 +
[[Category:HTTP]]
 +
[[Category:Web design]]
 +
[[Category:Web design and development]]

Revision as of 18:01, 24 April 2016

The ETag or entity tag is part of HTTP, the protocol for the World Wide Web.

Web cache validation

The ETag is one of several mechanisms that HTTP provides for web cache validation, which allows a client to make conditional requests.

This allows caches to be more efficient, and saves bandwidth, as a web server does not need to send a full response if the content has not changed.

ETags can also be used for optimistic concurrency control, as a way to help prevent simultaneous updates of a resource from overwriting each other.

Opaque identifier

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 representation 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 whether two representations of a resource are the same.

See also

External links