Mobile app version of vmapp.org
Login or Join
Kaufman445

: What's the minimum age for a Cache-Control header with Akamai? We're planning an integration with a CDN (likely Akamai) and are trying to determine how low we could go for a max-age value.

@Kaufman445

Posted in: #Cache #CacheControl #Headers #Performance

We're planning an integration with a CDN (likely Akamai) and are trying to determine how low we could go for a max-age value.

For a site that could get a few hundred thousand folks hitting the site after a tweet goes out, having content be cached will help reduce the burden on the servers. Having said that, our client is sensitive to not being able to quickly modify content if something were to get published prematurely.

Our plan has been to implemented a phased cached-control process where we start out for the first 1-10 minutes at a low (20-30 seconds?) Cache-Control max-age and then as things appear to be in working order, we'll begin to increase the max-age as content has been live for a period of time. For example, after a few hours, we might start to set that at 60 minutes... and after a day, we might throttle that to a day.

Circling back to the original question, is it possible to set a cache-control header at a low level like 20-30 seconds? (Does Akamai set a min value here? I haven't been able to track down any specifics here on my Google searches)

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Kaufman445

2 Comments

Sorted by latest first Latest Oldest Best

 

@Berumen354

Akamai has no minimum Cache TTL value. You can set 1 second or 0. However what you are trying to is better achieved with origin cache control headers because changing settings on Akamai isn't instant due to the size of the network.

I would recommend you start with atleast 5 minutes to begin with although I find 10 minutes is the most ideal lowest.

Now for modifying content I suggest using the following combination on your cached content with Akamai.


set a Last Modified Header on your content
On Akamai set IMS check or TTL of 30 seconds to 1 minute.
When content is modified set the new datetime by code correctly. Ensure your system clock is set correctly on the origin side. Ensure the format of LMS header is correct.


With the above you will be serving only 304 no body content if nothing changes


Alternatively use "Etag" and ask for "Etag" to be enabled on you Akamai configuration.
everytime content is modified update the eTag. Etags are not automatically enabled on Akamai

10% popularity Vote Up Vote Down


 

@Moriarity557

I have not used them for a long time, but if you are talking about the cache control header they set when serving content from their CDN, it gets pulled from your source. So for example if you have a pull with the cache control header of max-age 10s then the CDN will copy that. (same goes for cloudfront). The only CDN i am aware of which lets you override these headers via interface is MaxCDN.

As for CDN, typically you set caching as long as possible. What point is a CDN (other than an expensive way to geo-locate your site) if the cache control headers are set so shortly. When you have brief headers, the cdn needs to reach out to your site to pull fresh content, this can add a delay to your visitor actually grabbing the content themselves and is known as a cache miss.

Your best bet if you plan to phase in CDN is just to use it for Static Resources such as Images, Icons, CSS and Javascripts. If you create your CSS, Images, Or JS serverSide then you need to look into a way to purge these resources, or better version them with either a querystring or url parameter.

Again. Akami was soooo expensive compared to other options, you really only benefit for long cache headers (1 year or so)

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme