I know from the below link that I have to set JVM parameter to increase the cache size.
https://helpx.adobe.com/experience-manager/kb/cacheentrycollector-cache-size-is-too-small.html
But where exactly should I set this value? In workspace.xml or some where else?
-Dorg.apache.jackrabbit.core.security.authorization.acl.CachingEntryCollector.maxsize=40000
Thanks in advance!
Please try this:
On <your cq5 folder>/crx-quickstart/bin
, open start
(Unix) or start.bat
(Windows)
Search line that have this parameter: CQ_JVM_OPTS
Add your configurations to the parameter, for example:
CQ_JVM_OPTS='-server -Xmx1024m -XX:MaxPermSize=256M -Djava.awt.headless=true -XX:-UseSplitVerifier -Dorg.apache.jackrabbit.core.security.authorization.acl.CachingEntryCollector.maxsize=40000'
Save and use the file to start your CQ5 application.
I hope it works for you.