Facing performance issues with HTML request being served from Publisher. As we increase Concurrency, response time start increasing drastically.
The HTML has Dynamic content per user so not able to cache it on dispatcher.
Please help if any other way to load this dynamic content. Read about Sling Dynamic Include. Is their any other way??
Solved! Go to Solution.
Views
Replies
Total Likes
Sling dynamic include[1] is your best choice if only some part of the page is dynamic but if the whole page is generated dynamically, you can look into thread/heap dumps and increase CPU/Memory based on the results.
You may want to take some thread dumps to understand what is causing the performance issue and then address it accordingly.
If you are using queries with AEM repository, start looking at indexing.
Look at the rest calls you make to backend systems from AEM. Try to analyze if there is any latency with backend rest call responses. Configure http max parallel connections and time outs for the back end rest calls.
Other way is to call the rest api directly from client js code with bypassing the request to go through AEM.
Sling dynamic include[1] is your best choice if only some part of the page is dynamic but if the whole page is generated dynamically, you can look into thread/heap dumps and increase CPU/Memory based on the results.