Foros de discusión

[SOLVED] WebContent Cache??

Luca Lupo, modificado hace 11 años.

[SOLVED] WebContent Cache??

Regular Member Mensajes: 106 Fecha de incorporación: 1/10/12 Mensajes recientes
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, modificado hace 11 años.

RE: WebContent Cash??

Liferay Master Mensajes: 803 Fecha de incorporación: 10/03/08 Mensajes recientes
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, modificado hace 11 años.

RE: WebContent Cache??

Regular Member Mensajes: 106 Fecha de incorporación: 1/10/12 Mensajes recientes
Thanks a lot Jignesh that worked. Now, the question is: how do I do the cache clearing by code?
thumbnail
Jignesh Vachhani, modificado hace 11 años.

RE: WebContent Cache??

Liferay Master Mensajes: 803 Fecha de incorporación: 10/03/08 Mensajes recientes
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, modificado hace 11 años.

RE: WebContent Cache??

Regular Member Mensajes: 106 Fecha de incorporación: 1/10/12 Mensajes recientes
Trying...thanks...I'll let you know
Luca Lupo, modificado hace 11 años.

RE: WebContent Cache??

Regular Member Mensajes: 106 Fecha de incorporación: 1/10/12 Mensajes recientes
clearCache() worked emoticon

Thanksssssss
thumbnail
Jignesh Vachhani, modificado hace 11 años.

RE: WebContent Cache??

Liferay Master Mensajes: 803 Fecha de incorporación: 10/03/08 Mensajes recientes
Luca Lupo:
clearCache() worked emoticon

Thanksssssss


That's awesome . Mark this thread as answered emoticon
Luca Lupo, modificado hace 11 años.

RE: WebContent Cache??

Regular Member Mensajes: 106 Fecha de incorporación: 1/10/12 Mensajes recientes
how?
Luca Lupo, modificado hace 11 años.

RE: WebContent Cash??

Regular Member Mensajes: 106 Fecha de incorporación: 1/10/12 Mensajes recientes
In particular, the cache i have to clear is the following:

Clear content cached across the cluster.

Hint?
thumbnail
Ondřej Životský, modificado hace 11 años.

RE: [SOLVED] WebContent Cache??

Junior Member Mensajes: 29 Fecha de incorporación: 11/03/11 Mensajes recientes
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, modificado hace 11 años.

RE: [SOLVED] WebContent Cache??

Regular Member Mensajes: 106 Fecha de incorporación: 1/10/12 Mensajes recientes
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, modificado hace 7 años.

RE: [SOLVED] WebContent Cache??

Expert Mensajes: 492 Fecha de incorporación: 17/09/12 Mensajes recientes
The correct solution is to uncheck the cacheable box in the webcontent template.