You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "Ritu Raj Lakhera (JIRA)" <ji...@apache.org> on 2015/10/26 10:06:27 UTC

[jira] [Created] (OFBIZ-6701) Category And Product Content wrapper

Ritu Raj Lakhera created OFBIZ-6701:
---------------------------------------

             Summary: Category And Product Content wrapper
                 Key: OFBIZ-6701
                 URL: https://issues.apache.org/jira/browse/OFBIZ-6701
             Project: OFBiz
          Issue Type: Improvement
          Components: product
    Affects Versions: Trunk, Release Branch 14.12, Release Branch 13.07, Release Branch 12.04, Release Branch 11.04
            Reporter: Ritu Raj Lakhera
             Fix For: Trunk


There are some enhancements in product content wrapper JAVA class. We used these enhancements in our project and observed good change in website performance. 

1. If content of product is empty string or null then method 'getProductContentAsText' is not caching the result. 
And thus every time this method is making SQL call even no content in database. Method should cache the empty string and null as result.
2. Overloaded method 'getProductContentAsText' is also using cache method of Delegator for 'ProductConetnt' entity selection and passing 'true' to use cache for 'ContentWorker.renderContentAsText' method. This approach is making unnecessary copies of cache for content.
	I Product content wrapper cache
	II ProductContent entity cache
	III Content, Dataresource, ElectrocText and etc... entities cache(ContentWorker.renderContentAsText)

If I again call the 'getProductContentAsText' method then this will return the result from product content wrapper cache. So there is no use of ProductContent, Content, Dataresource and ElectrocText cache. And these cache also filling the memory of application.

We also applied the same logic for category content wrapper. I am attaching the patch for trunk, please review.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)