How To

How to perform Reindexing Programmatically in Magento 2

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!

Click to rate this post!
[Total: 6 Average: 4]
Dhiren Vasoya

Dhiren Vasoya is a Director and Co-founder at MageComp, Passionate ?️ Certified Magento Developer?‍?. He has more than 9 years of experience in Magento Development and completed 850+ projects to solve the most important E-commerce challenges. He is fond❤️ of coding and if he is not busy developing then you can find him at the cricket ground, hitting boundaries.?

View Comments

Recent Posts

How to Add a Custom Field to the Cart Price Rules Form in Magento 2?

Hello Magento Friends, In this blog, we will learn How to Add a Custom Field…

5 hours ago

How to Add Tooltip in Checkout Shipping Field in Magento 2?

Hello Magento Friends, In today’s blog, I will explain How to Add Tooltip in Checkout…

3 days ago

How to Integrate and Use MongoDB with Laravel?

MongoDB is a popular NoSQL database that offers flexibility and scalability when handling modern web…

4 days ago

NodeJS | Callback Function

In NodeJS, callbacks empower developers to execute asynchronous operations like reading files, handling requests, and…

5 days ago

How to Show SKU in Order Summary in Magento 2?

Hello Magento Friends, In today’s blog, we will learn How to Show SKU in Order…

1 week ago

Best Colors to Use for CTA Buttons

The "Buy Now" and "Add to Cart" buttons serve as the primary call-to-action (CTA) elements…

1 week ago