indexer.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="UTF-8"?>
  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:Indexer/etc/indexer.xsd">
  9. <indexer id="catalog_product_flat" view_id="catalog_product_flat" class="Magento\Catalog\Model\Indexer\Product\Flat">
  10. <title translate="true">Product Flat Data</title>
  11. <description translate="true">Reorganize EAV product structure to flat structure</description>
  12. </indexer>
  13. <indexer id="catalog_category_flat" view_id="catalog_category_flat" class="Magento\Catalog\Model\Indexer\Category\Flat">
  14. <title translate="true">Category Flat Data</title>
  15. <description translate="true">Reorganize EAV category structure to flat structure</description>
  16. </indexer>
  17. <indexer id="catalog_category_product" view_id="catalog_category_product" class="Magento\Catalog\Model\Indexer\Category\Product" shared_index="category_product">
  18. <title translate="true">Category Products</title>
  19. <description translate="true">Indexed category/products association</description>
  20. </indexer>
  21. <indexer id="catalog_product_category" view_id="catalog_product_category" class="Magento\Catalog\Model\Indexer\Product\Category" shared_index="category_product">
  22. <title translate="true">Product Categories</title>
  23. <description translate="true">Indexed product/categories association</description>
  24. </indexer>
  25. <indexer id="catalog_product_price" view_id="catalog_product_price" class="Magento\Catalog\Model\Indexer\Product\Price">
  26. <title translate="true">Product Price</title>
  27. <description translate="true">Index product prices</description>
  28. </indexer>
  29. <indexer id="catalog_product_attribute" view_id="catalog_product_attribute" class="Magento\Catalog\Model\Indexer\Product\Eav">
  30. <title translate="true">Product EAV</title>
  31. <description translate="true">Index product EAV</description>
  32. </indexer>
  33. </config>