Home > Software engineering >  Magento2 products count suddenly getting reduce in category pages
Magento2 products count suddenly getting reduce in category pages

Time:12-21

I'm working on Magento 2.3.6 EE version with 68 stores and around 10K products.

Sometimes the products on the category reduce without any reason and automatically get appear again in a few minutes.

Has anyone faced an issue like this before? I assume this is something with indexing.

CodePudding user response:

The problem may be caused by the cache on your site. You can run these two commands one by one

php bin/magento indexer:reindex

php bin/magento c:f

CodePudding user response:

If you can run ssh command, you can try below command to fix immediately

php bin/magento indexer:reindex

php bin/magento cache:flush

For long term, you need go to System->Index Management change index mode to update by schedule if not being set like this

  • Related