Skip to content

Instantly share code, notes, and snippets.

@4poc
Created February 21, 2011 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 4poc/837530 to your computer and use it in GitHub Desktop.
Save 4poc/837530 to your computer and use it in GitHub Desktop.
HTTP Caching Cheat Sheet
1. Last-Modified
Server->Client: Last-Modified: Mon, 21 Feb 2011 ... (200)
Client->Server: If-Modified-Since: Mon, 21 Feb 2011 ... (200/304)
2. ETag
Server->Client: ETag: 123456654321 (200)
Client->Server: If-None-Match: 123456654321 (200/304)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment