Configure Item and Data cache values
Version: 10.4
|
Applies to |
Content Delivery, Content Management |
|---|
To configure Item and Data cache values:
-
Create a patch file for cache size values. For example,
custom.caching.config. -
Use rule-based configuration to target different environments. The following example sets custom Web database cache values for Content Delivery, and Master database cache values for Content Management:
RequestResponse<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> <databases> <database id="web" role:require="ContentDelivery or Standalone"> <cacheSizes> <data>1000MB</data> <items>1000MB</items> </cacheSizes> </database> <database id="master" role:require="Standalone or ContentManagement"> <cacheSizes> <data>1000MB</data> <items>1000MB</items> </cacheSizes> </database> </databases> </sitecore> </configuration> -
Deploy your configuration file to the
<root>/App_Config/Includesfolder. You can check your changes by visiting/sitecore/admin/showconfig.aspxand searching forpatch:source="custom.caching.config".