Forums de discussion

[SOLVED] WebContent Cache??

Luca Lupo, modifié il y a 11 années.

[SOLVED] WebContent Cache??

Regular Member Publications: 106 Date d'inscription: 01/10/12 Publications récentes
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, modifié il y a 11 années.

RE: WebContent Cash??

Liferay Master Publications: 803 Date d'inscription: 10/03/08 Publications récentes
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, modifié il y a 11 années.

RE: WebContent Cache??

Regular Member Publications: 106 Date d'inscription: 01/10/12 Publications récentes
Thanks a lot Jignesh that worked. Now, the question is: how do I do the cache clearing by code?
thumbnail
Jignesh Vachhani, modifié il y a 11 années.

RE: WebContent Cache??

Liferay Master Publications: 803 Date d'inscription: 10/03/08 Publications récentes
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, modifié il y a 11 années.

RE: WebContent Cache??

Regular Member Publications: 106 Date d'inscription: 01/10/12 Publications récentes
Trying...thanks...I'll let you know
Luca Lupo, modifié il y a 11 années.

RE: WebContent Cache??

Regular Member Publications: 106 Date d'inscription: 01/10/12 Publications récentes
clearCache() worked emoticon

Thanksssssss
thumbnail
Jignesh Vachhani, modifié il y a 11 années.

RE: WebContent Cache??

Liferay Master Publications: 803 Date d'inscription: 10/03/08 Publications récentes
Luca Lupo:
clearCache() worked emoticon

Thanksssssss


That's awesome . Mark this thread as answered emoticon
Luca Lupo, modifié il y a 11 années.

RE: WebContent Cache??

Regular Member Publications: 106 Date d'inscription: 01/10/12 Publications récentes
how?
Luca Lupo, modifié il y a 11 années.

RE: WebContent Cash??

Regular Member Publications: 106 Date d'inscription: 01/10/12 Publications récentes
In particular, the cache i have to clear is the following:

Clear content cached across the cluster.

Hint?
thumbnail
Ondřej Životský, modifié il y a 11 années.

RE: [SOLVED] WebContent Cache??

Junior Member Publications: 29 Date d'inscription: 11/03/11 Publications récentes
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, modifié il y a 11 années.

RE: [SOLVED] WebContent Cache??

Regular Member Publications: 106 Date d'inscription: 01/10/12 Publications récentes
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, modifié il y a 7 années.

RE: [SOLVED] WebContent Cache??

Expert Publications: 492 Date d'inscription: 17/09/12 Publications récentes
The correct solution is to uncheck the cacheable box in the webcontent template.