Expand my Community achievements bar.

SOLVED

CQ5.5 Dispatch image files with same filename but different extension?

Avatar

Level 2

Hi

I have two images file in my CQ instances:

1.  ko.jpg

2.  ko.gif

When I dispatched ko.jpg to the webserver, everything went fine.  Then when i dispatched ko.gif, for some reason, ko.jpg will be removed from the web server

When I check the dispatcher.log, i saw the following log:

[Tue May 27 16:51:23 2014] [I] [28236(140441037608704)] Eviced /cqcache/content/dam/web/bochk/desktop/ko,gif

 

I believe the dispatcher module will  remove dispatched file with the same filename and even with different file extension.  Are there is configuration which prevent this from happening or are there any reason behind on this behaviour?

 

Thanks

1 Accepted Solution

Avatar

Correct answer by
Level 10

From the logs indicates flush request is fired and It is expected if you have content update configured. More details refer [1] well explained from orotas. 

[1]   http://help-forums.adobe.com/content/adobeforums/en/experience-manager-forum/adobe-experience-manage...

View solution in original post

4 Replies

Avatar

Correct answer by
Level 10

From the logs indicates flush request is fired and It is expected if you have content update configured. More details refer [1] well explained from orotas. 

[1]   http://help-forums.adobe.com/content/adobeforums/en/experience-manager-forum/adobe-experience-manage...

Avatar

Level 2

Hi Sham

 

Thanks for your reply

I understand the how dispatcher flush the content in the webserver.  But why when I activate "ko.gif" to the web server.  It will invalidate my "ko.jpg"?

Avatar

Level 10

that is correct.look your dispatcher config & more details at http://dev.day.com/docs/en/cq/current/deploying/dispatcher.html

 It deletes all files that start with the same handle from the cache. For example, if the file /en/ko.gif is updated, all the files that start with /en/ko. are deleted.

Avatar

Level 2

Hi Sham

Are there any setting in dispatcher.any so that when dispatching /en/ko.gif, it will not delete /en/ko.jpg from the webserver?