Fórumok

[SOLVED] WebContent Cache??

Luca Lupo, módosítva 11 év-val korábban

[SOLVED] WebContent Cache??

Regular Member Bejegyzések: 106 Csatlakozás dátuma: 2012.10.01. Legújabb bejegyzések
Hi Guys,

I have created a plugin Ext to extend the core's action that "display/render" a web content in Liferay.

com.liferay.portlet.journalcontent.action.ViewAction

The purpose is to allow end users to insert special tag in the web content (for example, <username />) and to render those tags with specific values (for username the username of the real user in the portal).

I believe I have a problem in the port let/webcontent cache. Basically, If another user (let's say Paul) accesses the portal after a first user (let's say Luca) already accessed, the portal renders the web content with the tag <username /> set to Luca instead of <username /> (so i can detect it and change with Paul).

So it's like life ray is reusing the portlet web content from a sort of cache instead of taking it from the DB again and clean.

Any hint?

Luca
thumbnail
Jignesh Vachhani, módosítva 11 év-val korábban

RE: WebContent Cash??

Liferay Master Bejegyzések: 803 Csatlakozás dátuma: 2008.03.10. Legújabb bejegyzések
You can give a try by clearing DB cache from liferay control panel.
Hopw this will resolve and if still issue persist , please post your some of code here which can help to understand the exact thing.
Luca Lupo, módosítva 11 év-val korábban

RE: WebContent Cache??

Regular Member Bejegyzések: 106 Csatlakozás dátuma: 2012.10.01. Legújabb bejegyzések
Thanks a lot Jignesh that worked. Now, the question is: how do I do the cache clearing by code?
thumbnail
Jignesh Vachhani, módosítva 11 év-val korábban

RE: WebContent Cache??

Liferay Master Bejegyzések: 803 Csatlakozás dátuma: 2008.03.10. Legújabb bejegyzések
Luca Lupo:
Thanks a lot Jignesh that worked. Now, the question is: how do I do the cache clearing by code?



You can use JournalContentUtil.clearCache() OR JournalContentUtil.clearCache(groupId, articleId, templateId);

Hope this will work !!!!
Luca Lupo, módosítva 11 év-val korábban

RE: WebContent Cache??

Regular Member Bejegyzések: 106 Csatlakozás dátuma: 2012.10.01. Legújabb bejegyzések
Trying...thanks...I'll let you know
Luca Lupo, módosítva 11 év-val korábban

RE: WebContent Cache??

Regular Member Bejegyzések: 106 Csatlakozás dátuma: 2012.10.01. Legújabb bejegyzések
clearCache() worked emoticon

Thanksssssss
thumbnail
Jignesh Vachhani, módosítva 11 év-val korábban

RE: WebContent Cache??

Liferay Master Bejegyzések: 803 Csatlakozás dátuma: 2008.03.10. Legújabb bejegyzések
Luca Lupo:
clearCache() worked emoticon

Thanksssssss


That's awesome . Mark this thread as answered emoticon
Luca Lupo, módosítva 11 év-val korábban

RE: WebContent Cache??

Regular Member Bejegyzések: 106 Csatlakozás dátuma: 2012.10.01. Legújabb bejegyzések
how?
Luca Lupo, módosítva 11 év-val korábban

RE: WebContent Cash??

Regular Member Bejegyzések: 106 Csatlakozás dátuma: 2012.10.01. Legújabb bejegyzések
In particular, the cache i have to clear is the following:

Clear content cached across the cluster.

Hint?
thumbnail
Ondřej Životský, módosítva 11 év-val korábban

RE: [SOLVED] WebContent Cache??

Junior Member Bejegyzések: 29 Csatlakozás dátuma: 2011.03.11. Legújabb bejegyzések
Hi,
you choosed solution which works, It´s great...

One little note - Liferay has better solution for your requirement. It is transformer. You can create EXT plugin with MyPlaceholders class and register it in portal-ext.properties (key journal.transformer.listener - add your class to the end). MyPlaceholders class can extend BaseTransformerListener and easily modify WebContent before it is shown. So you don't need to modify Liferay classes. But I'm not exactly sure how cache works here... ;)
Luca Lupo, módosítva 11 év-val korábban

RE: [SOLVED] WebContent Cache??

Regular Member Bejegyzések: 106 Csatlakozás dátuma: 2012.10.01. Legújabb bejegyzések
Thanks Ondřej, i will give it a try soon. Now, I'm busy with another thing that might be of interest for you guys (create my own asset publisher). Thus, no extension, but a brand new portlet without writing again the code from the beginning but using the one Asset Publisher uses and modifying that. emoticon
thumbnail
Mohammad Azharuddin, módosítva 7 év-val korábban

RE: [SOLVED] WebContent Cache??

Expert Bejegyzések: 492 Csatlakozás dátuma: 2012.09.17. Legújabb bejegyzések
The correct solution is to uncheck the cacheable box in the webcontent template.