Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

max-age is configured, do i need to configure invalidate also in dispatcher

Avatar

Level 1

whats the impact of max-age related to client cache

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi @rohan07,

Cache-Control: max-age is a HTTP header that influences the cache duration in the client browser.

Dispatcher invalidation determines the cache duration of AEM content in the Dispatcher cache.

Technically speaking, the two things are not related, however you will need to configure both in order to have a performance-efficient and functional solution:

cache.png 

Please refer to the Adobe documentation on enabling TTL (Time To Live) on AEM and Dispatcher for more information. 

View solution in original post

3 Replies

Avatar

Community Advisor

Hi,

 

Related to browser max-age a new request will not be made to the server as the js/css/image is stored in the browser cache (client side). After the max-age it will try to get the response by hitting the Akamai/Dispatcher/Publisher. If the response is cached in Akamai/Dispatcher it will not go to publisher.

Avatar

Correct answer by
Level 10

Hi @rohan07,

Cache-Control: max-age is a HTTP header that influences the cache duration in the client browser.

Dispatcher invalidation determines the cache duration of AEM content in the Dispatcher cache.

Technically speaking, the two things are not related, however you will need to configure both in order to have a performance-efficient and functional solution:

cache.png 

Please refer to the Adobe documentation on enabling TTL (Time To Live) on AEM and Dispatcher for more information. 

Avatar

Employee Advisor

As already outlined by the others, the "Max-Age" headers influences caches more downstream from AEM, that means any well-configured intermediary, including CDNs, and also your browser should respect them.

 

Regarding dispatcher: In most cases it must not affect dispatcher at all. If the Max-Age has passed and clients reach back to your dispatcher, the dispatcher might deliver the same file again (with a new Max-Age header) if that file has not changed in the cache. Which is default if you invalidate your dispatcher cache on any change.

 

The situation is a bit different when you use the feature of TTL-based caching on the dispatcher. Because then your application delivers content, and you cannot invalidate the cache properly (typically because the invalidation logic would be too complex/demaning). In that case you enable that feature and let the dispatcher invalidate the files after a few minutes automatically, and refetches the files again from AEM.