mayankdolphin / magento2-module-specificproductindexing
Reindexing Specific Products
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:magento2-module
Requires
- php: >=7.3
This package is auto-updated.
Last update: 2025-07-07 11:24:46 UTC
README
If you want to install this extension using composer then make sure your composer version is Composer 2.0
composer require mayankdolphin/magento2-module-specificproductindexing
bin/magento module:enable Dolphin_SpecificProductIndexing
How to use this Module?
We've created a new command indexer:reindex:specific
with 2 options --id
and --sku
.
You can use that commad like below examples.
Reindex single product by ID/SKU
php bin/magento indexer:reindex:specific --id=1
php bin/magento indexer:reindex:specific --sku=24-MB01
Reindex multiple products by IDs/SKU
php bin/magento indexer:reindex:specific --id=1,2
php bin/magento indexer:reindex:specific --sku=24-MB01,24-MB04
You need to add IDs/SKU by ,
seprate if you want to reindex multiple products.
This extension is not responsible for any damage. So, you can apply this at your own risk.