내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

TTL based on resourceType

Avatar

Level 3

Hi All,

I am trying to implement TTL using acs aem commons and it's working fine if I configure it based on paths(Max Age) option.

I was looking for something if it has TTL configuration available per resourceType or template based?  Has anyone tried this thing.

Having resourceType based TTL can be helpful in my case because

I have all the pages stored at the top location e.g. [dispatcher-cache-root]/page-1.html(templateA)  [dispatcher-cache-root]/page-2.html(templateB) etc.  I want all of them to be configured with different TTL, if I go path based, I need to have *.html and once that's configured, any specific configuration e.g. /page-1.html is getting ignored and only generic one takes priority.

Thanks in advance!

Rachna

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 10

With ACS-TTL, you could write a couple of custom filters & servlets with to apply configuration on your resource types rather than globally across project. In a nutshell, customize the ACS code.

E.g;

acs-aem-commons/bundle/src/main/java/com/adobe/acs/commons/http/headers/impl at master · Adobe-Consu...

acs-aem-commons/DailyExpiresHeaderFilter.java at master · Adobe-Consulting-Services/acs-aem-commons ...

원본 게시물의 솔루션 보기

3 답변 개

Avatar

정확한 답변 작성자:
Level 10

With ACS-TTL, you could write a couple of custom filters & servlets with to apply configuration on your resource types rather than globally across project. In a nutshell, customize the ACS code.

E.g;

acs-aem-commons/bundle/src/main/java/com/adobe/acs/commons/http/headers/impl at master · Adobe-Consu...

acs-aem-commons/DailyExpiresHeaderFilter.java at master · Adobe-Consulting-Services/acs-aem-commons ...

Avatar

Level 3

Hi Gaurav,

Thanks for your reply.

I already have SSI implemented which is similar to SDI and it has it's own challenges of invalidating SSI snippets on dispatcher and one of the reason, we are looking for simple solution like TTL.

I will try customising ACS code and will update here.

Once again thanks a ton, much appreciated!!

Regards,

Rachna

Avatar

Level 3

Hi,

I have got TTL based on resourceType working and the implementation is very similar to acs-aem-commons class DispatcherMaxAgeHaderFilter.java

Thanks & Regards,

Rachna