I'm facing performance issues while trying to show data with Liferay Search-container. I've 1000 record (Web content), I'm using pagination also. When refreshing page, performance are so poor. Is there optimisation to do in Liferay to decrease laoding time?
Poor performance with Search container in Liferay 7
230 Views Asked by wikimix At
1
There are 1 best solutions below
Related Questions in PERFORMANCE
- Slow performance on ipad erasing image
- Can Apache Ant be told to cache its XML files?
- What are the pros and cons of the picture element?
- DB candidate as CouchDB/Schema replacement
- python member str performance too slow
- Split a large query (2 days) into pieces to increase the speed in Postgres
- Use GUI displayed results of SQL query vs new queries?
- fastest way to map a large number of longs
- Bash regular expression execution hangs on long expressions
- Why is calling a function so slow in Javascript?
- Performance of element-compare in java collections
- "Capture GPU Frame" in XCode -- iOS only?
- Efficiency penalty of initializing a struct/class within a loop
- Change the rotating speed of the circle when the mouse moves using javascript
- Replace foreach to make loop into queryable
Related Questions in LIFERAY
- how to bypass the necessity of having to have email address firstname and lastname in liferay to import authenticating users
- How to resolve java.lang.StringIndexOutOfBoundsException: String index out of range: -325 while deploying Liferay Ext plugin 6.1
- Avoid log trace of external framework J2EE
- Unit testing with Liferay 6.2
- Customize Liferay search portlet
- Build Liferay web service with optional parameter
- How to start with liferay
- Embedding Microsoft Power BI into Liferay
- Remove " Automatically Extracted Metadata and Version History " from Liferay portlet
- Get list of users in liferay
- How to pass HTTP request to Web-Service
- How to land users to different page as per their roles
- Incorrect liferay-plugins dependency
- How to pass data from page to Portlet class through AJAX call?
- EL Exception on JSP when passing arguments to liferay-ui:message
Related Questions in LIFERAY-DXP
- Get error during deploy in liferay 7
- Liferay DXP web content field inside structure
- issue with bundling external dependencies in Liferay Dxp bundle
- WebSockets support not working on DXP 7.1
- React NPM Porlet deployed but it is not available in applications panel on Liferay 7
- Error publishing on Liferay, No class StagedModelDataHandlerRegistryUtil
- Poor performance with Search container in Liferay 7
- How to assign multiple values to property "com.liferay.portlet.display-category" in DXP for OOTB portlets?
- How to hide Liferay Portal from being index in any of the popular search engine?
- Could not find method compileOnly with Gradle 4.3.1
- Liferay 7- Theme does not appear correctly in IE9
- Submitted a form via Jmeter script on Liferay DXP, not getting saved in DB(Postgres)
- Inherit permissions from parent to child site page in Liferay
- Liferay 7 - OSGi components Web Console (Apache Felix) Integration
- Manually creating a deployable JAR for Liferay
Related Questions in SEARCHCONTAINER
- Liferay Search Container pagination issue: When click on next or page no 2 it will redirect to default render method
- Poor performance with Search container in Liferay 7
- Added orderable=true to Liferay search container, controls appeared but order does not change
- Customizing how values get displayed in a Liferay SearchContainer
- Liferay Search Container Sorting Without executing doview method
- Liferay Search Container is giving Symbol Error
- How to refresh a portlet on a page where there is more portlets? (liferay-7.2)
- Liferay Search Container not working .cant see next page option in liferay7
- Liferay SearchContainer with multiple classes
- Are there any specific scenarios to use Liferay search container over Dandelion datatables framework?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You'll have to figure out where you loose the performance. If you fetch 1000 objects from database, and - before showing them - fetch additional information for these 1000 objects in 1000 independent queries: That's what you'll need to optimize. If you fetch 100000 objects from the database only to throw away 99000 before showing 10 of the remaining 1000 objects on a page: There's your problem.
As you mention Web Content: If the article is fully fetched from the database, it might be parsed to separate the individual languages contained in an article, and that takes time. Articles will end up in a cache, and you can check the cache size: If you have a cache size of 900 objects, you'll constantly overflow the cache and never reuse a previously parsed article.
In other words: You're talking about performance tuning. Step one in performance tuning is: Measure, and figure out what eats up your performance in the first place. Identify, fix, rinse, repeat. There's no magic wand or switch.