Indexing is all about how Magento alters data, such as products and categories, to enhance the performance of your store front-end. Once you make any changes to backend or code all your data must be refreshed or updated. Because Magento owns very complex database architecture that contains many database tables to store information like catalog data, prices, users, and stores and to get an instant effect in frontend one must have to reindex all this information in special database tables using indexers. Even making a small change in price or URL requires reindexing of data to get an effect. Instead of manually indexing, using a small piece of code in an extension helps you to perform reindexing programmatically in Magento 2. Here is how to do it.
<?php namespace Vendor\Extension\Controller; class Myactions extends \Magento\Framework\App\Action\Action { protected $indexFactory; protected $indexCollection; public function __construct( \Magento\Indexer\Model\IndexerFactory $indexFactory, \Magento\Indexer\Model\Indexer\CollectionFactory $indexCollection ){ $this->indexFactory = $indexFactory; $this->indexCollection = $indexCollection; } public function Mycustomaction() { $indexerCollection = $this->indexCollection->create(); $indexids = $indexerCollection->getAllIds(); foreach ($indexids as $indexid) { $indexidarray = $this->indexFactory->create()->load($indexid); //If you want reindex all use this code. $indexidarray->reindexAll($indexid); //If you want to reindex one by one, use this code $indexidarray->reindexRow($indexid); } } }
That’s it! You can also read our blog to know “How to clean and flush cache programmatically in Magento 2” we have a blog for that too. That’s it for today, Let us know if you are facing an issue while implementing using this code by commenting below.
Happy Indexing!
Hello Magento Friends, In this blog, we will learn How to Add a Custom Field…
Hello Magento Friends, In today’s blog, I will explain How to Add Tooltip in Checkout…
MongoDB is a popular NoSQL database that offers flexibility and scalability when handling modern web…
In NodeJS, callbacks empower developers to execute asynchronous operations like reading files, handling requests, and…
Hello Magento Friends, In today’s blog, we will learn How to Show SKU in Order…
The "Buy Now" and "Add to Cart" buttons serve as the primary call-to-action (CTA) elements…
View Comments
how to use this code?
You can use this code any place where you required doing the re-indexing programmatically