Goal: Once you have your portal up and running, you may find a need to tune it for performance, especially if your site winds up generating more traffic than you'd anticipated. There are some definite steps you can take with regard to improving Liferay's performance. The aim is to bring together all the tuning tips and configuration at a single location for reference.
- Liferay Configuration
- ##Lucene Search
#Set the following to true if you want to index your entire library
of files on startup.
- system.properties
# The layout cache filter will cache pages to speed up page rendering for# guest users. See ehcache.xml to modify the cache expiration time to live. - Disable unneeded filters
Liferay comes by default with 15 servlet filters enabled and running. It is likely that for your installation, you don't need them all. Two filters that you can disable without any impact are the Compression Filter and the Strip Filter. These filters are responsible for shrinking the size of the response (to save bandwidth). The Strip Filter removes whitespace from the response object, and the Compression Filter compresses it. This obviously requires some processing, and so disabling these two filters can enhance performance.To disable a servlet filter, simply comment it out of your web.xml file.If there is a feature supported by a servlet filter that you know you are not using, you can comment it out as well to achieve some performance gains. For example, if you are not using CAS for single sign-on, comment out the CAS Filter. If you are not using NTLM for single sign-ons, comment out the Ntlm Filter. If you are not using the Virtual Hosting for Communities feature, comment out the Virtual Host Filter. The fewer servlet filters you are running, the less processing power is needed for each request.
There is a known optimilisation for LR 5.0+ Compression Filter
- HTML : Saves some 50Kb on every page but portlet look-feel modification is not possible for all (including (Omni)Admin)
## Portlet CSS Portlet
# Set this to true to enable the ability to modify portlet CSS at runtime
# via the Look and Feel icon. Disabling it can speed up performance.
#
# Set this to false if the system does not use allow users to modify the
# look and feel.
#
- Javascript: Not needed scripts could be expunged here. But the fattest of them all jQuery is needed almost always
## JavaScript
Setting this will improve download time, but tweaks above are probably unused
- CSS: Set this property to true to load the theme's merged CSS files for faster loading for production.
- Resources: Get your images and other resources from your personalised theme or even an HTTP server alias like www.liferay.org/resources/ Resources uploaded in Liferay are being served-up from database and will always be slower than using this strategy. especialy for recurring enterprise logo's and all.
- Themes: If you need a high performing landing-page and other pages you could consider creating a special theme for these pages.
- Velocity Caching: Set this to true in production so that VM templates are cached
- CSS: Hack removing ALL CSS
- Tomcat Configuration
- OS settings
- MySQL: Links to useful references:
- Memory:Memory is one of the first things to look at when you want to optimize performance. If you have any disk swapping, that will have a serious impact on performance. Make sure that your server has an optimal amount of memory and that your JVM is tuned to use it.There are three JVM command switches that control the amount of memory it will use.-Xms-Xmx-XX:MaxPermSizeThese three settings control the amount of memory available to the JVM initially, the maximum amount of memory into which the JVM can grow, and the separate area of the heap called Permanent Generation space.Issues with PermGen space can also affect performance. PermGen space contains long-lived classes, anonymous classes and interned Strings. Hibernate, in particular—which Liferay uses extensively—has been known to make use of PermGen space. If you increase the amount of memory available to the JVM, you may want to increase the amount of PermGen space accordingly.
- Portlets: Liferay comes pre-bundled with many portlets which contain a lot of functionality, but not every web site that is running on Liferay needs to use them all. In portlet.xml and liferay-portlet.xml, comment out the ones you are not using. While having a loan calculator, analog clock, or game of hangman available for your users to add to pages is nice, those portlets may be taking up resources that are needed by custom portlets you have written for your site. If you are having performance problems, commenting out some of the unused portlets may give you the performance boost you need.
- References/Source
- http://www.liferay.com/community/wiki/-/wiki/Main/Performance
- http://www.liferay.com/documentation/liferay-portal/5.1/administration/-/ai/performance-tuning;jsessionid=F9EDDE895FF685955600AF21B25C5D43.node-1
But be careful, these settings need a powerful Application Server.
Improvement: Approximately 50% faster
Probably this works also with other Application Servers like Tomcat..