Sitecore content authoring slowness: Configuration optimization
- Sridharan Padmanabhan
- Jan 8, 2024
- 1 min read
Updated: Dec 13, 2024
Application configuration updates to reduce load on the Sitecore CMS’s authoring instance.
Increase the following cache sizes, it is advisable to maintain the cache sizes such that they are not more than 80% utilized at any time:
IsUserInRole
UserProfileCache
AccessResultCache
Make the following configuration changes to reduce load on content editor operations:
<setting name="ContentEditor.CheckHasChildrenOnTreeNodes" set:value="false" /><setting name="ContentEditor.RenderCollapsedSections" value="false" /><setting name="ContentEditor.CheckSecurityOnTreeNodes" value="false" />
Limit item versions to a maximum of 5. An extremely large number of versions on several items will degrade the performance and consequently increase the load on the DB as well. Powershell would be the preferred tool for this.
More references:
Comments