Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I believe akamai supports If-Modified-Since/ETAGs which should get you what you want. Looking briefly at the documentation i found the following bullets which should help you.</p> <p>// From Akamai Documenation //</p> <p>Make sure that your origin server is sending information that indicates the version of the objects so that the Edge server can send a conditional GET request when those objects expire.</p> <p>Also make sure that your origin server responds properly to these conditional requests, with a 304 Not Modified, if the file has not changed since the time specified or if the ETag value specified still matches.</p> <p>Cache-Control and Expires headers instruct the browser on whether and how long to cache an object. But when refreshing an expired object, the browser must have information indicating the version of the object that it can send to the server in a conditional GET request.</p> <p>Version-specific information commonly available to the browser may include (among others):</p> <p>Last-Modified: If the browser receives a Last-Modified header with the object when caching it, the browser can then send an If-Modified-Since header when refreshing the object, requesting the server to send the object if it has changed since the date specified or respond with a 304 Not Modified response if it has not. Example, as received in the HTTP response: Last-Modified: Fri, 06 Feb 2009 00:08:43 GMT</p> <p>ETag: An ETag is a unique string that identifies a specific version of the object. If the browser receives an ETag header with the object, it can send an If-None-Match header when refreshing the object, requesting that the server send the object if its current ETag does not match the ETag in the request or respond with a 304 Not Modified response if it does. Example, as received in the HTTP response: ETag: "4514b5-4824-4743e60ff96c0" Make sure that your site is sending information that indicates the version of the objects so that the browser can send a conditional GET request to the server when those objects expire.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload