cache.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Cache/etc/cache.xsd">
  9. <type name="config" translate="label,description" instance="Magento\Framework\App\Cache\Type\Config">
  10. <label>Configuration</label>
  11. <description>Various XML configurations that were collected across modules and merged</description>
  12. </type>
  13. <type name="layout" translate="label,description" instance="Magento\Framework\App\Cache\Type\Layout">
  14. <label>Layouts</label>
  15. <description>Layout building instructions</description>
  16. </type>
  17. <type name="block_html" translate="label,description" instance="Magento\Framework\App\Cache\Type\Block">
  18. <label>Blocks HTML output</label>
  19. <description>Page blocks HTML</description>
  20. </type>
  21. <type name="collections" translate="label,description" instance="Magento\Framework\App\Cache\Type\Collection">
  22. <label>Collections Data</label>
  23. <description>Collection data files</description>
  24. </type>
  25. <type name="reflection" translate="label,description" instance="Magento\Framework\App\Cache\Type\Reflection">
  26. <label>Reflection Data</label>
  27. <description>API interfaces reflection data</description>
  28. </type>
  29. <type name="db_ddl" translate="label,description" instance="Magento\Framework\DB\Adapter\DdlCache">
  30. <label>Database DDL operations</label>
  31. <description>Results of DDL queries, such as describing tables or indexes</description>
  32. </type>
  33. <type name="compiled_config" translate="label,description" instance="Magento\Framework\App\Interception\Cache\CompiledConfig">
  34. <label>Compiled Config</label>
  35. <description>Compilation configuration</description>
  36. </type>
  37. </config>