di.xml 1.5 KB

12345678910111213141516171819202122232425262728
  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:ObjectManager/etc/config.xsd">
  9. <type name="Magento\Framework\App\FrontControllerInterface">
  10. <plugin name="front-controller-builtin-cache" type="Magento\PageCache\Model\App\FrontController\BuiltinPlugin"/>
  11. <plugin name="front-controller-varnish-cache" type="Magento\PageCache\Model\App\FrontController\VarnishPlugin"/>
  12. </type>
  13. <type name="Magento\Framework\Controller\ResultInterface">
  14. <plugin name="result-builtin-cache" type="Magento\PageCache\Model\Controller\Result\BuiltinPlugin"/>
  15. <plugin name="result-varnish-cache" type="Magento\PageCache\Model\Controller\Result\VarnishPlugin"/>
  16. </type>
  17. <type name="Magento\Framework\View\Layout">
  18. <plugin name="layout-model-caching-unique-name" type="Magento\PageCache\Model\Layout\LayoutPlugin"/>
  19. <plugin name="core-session-depersonalize"
  20. type="Magento\PageCache\Model\Layout\DepersonalizePlugin" sortOrder="1"/>
  21. </type>
  22. <type name="Magento\Framework\View\Model\Layout\Merge">
  23. <plugin name="layout-merge-plugin" type="Magento\PageCache\Model\Layout\MergePlugin"/>
  24. </type>
  25. <type name="Magento\Framework\App\Response\Http">
  26. <plugin name="response-http-page-cache" type="Magento\PageCache\Model\App\Response\HttpPlugin"/>
  27. </type>
  28. </config>