Created
September 12, 2019 01:49
-
-
Save blacktambourine/1877f73eb4b031c85ee9efa8387e5166 to your computer and use it in GitHub Desktop.
Sitecore 9.2 Dev Environment Performance Improvements
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/" xmlns:set="http://www.sitecore.net/xmlconfig/set/" xmlns:role="http://www.sitecore.net/xmlconfig/role/"> | |
<sitecore> | |
<!-- START Dev environment optimisations--> | |
<settings> | |
<setting name="ContentTesting.AutomaticContentTesting.Enabled" value="false"/> | |
<setting name="Counters.Enabled" value="false"/> | |
<setting name="Xdb.Enabled" value="false"/> | |
<setting name="Xdb.Tracking.Enabled" value="false"/> | |
<!--profiling for debugging performance--> | |
<!--<setting name="Pipelines.Profiling.Enabled" value="true" /> | |
<setting name="Pipelines.Profiling.MeasureCpuTime" value="true" />--> | |
</settings> | |
<group name="itemProvider" groupName="itemProvider"> | |
<pipelines> | |
<getItem> | |
<processor type="Sitecore.ContentTesting.Pipelines.ItemProvider.GetItem.GetItemUnderTestProcessor, Sitecore.ContentTesting"> | |
<patch:delete /> | |
</processor> | |
</getItem> | |
</pipelines> | |
</group> | |
<!--END Dev environment optimisations--> | |
</sitecore> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment