如何从索引中删除“目录URL重写”:在Magerun中重新编译:all

时间:2017-07-19 12:57:22

标签: magento-1.9

我正在使用magerun为我的magento商店运行Indexing。我正在使用以下命令

/usr/local/bin/magerun --root-dir=/var/www/html/store index:reindex:all

上述命令工作正常但我的要求是使用index:reindex:all命令跳过“Catalog URL Rewrites”。

是否可以跳过reindex:all命令中的单个索引?

magerun是否提供了跳过任何索引的命令/参数?

2 个答案:

答案 0 :(得分:0)

//我认为你需要为目录产品价格运行如下的特定索引。

php /your-magento-path//shell/indexer.php --reindex catalog_product_price

Reference link

答案 1 :(得分:0)

以下是跳过特定索引的解决方案

/usr/local/bin/magerun --root-dir=/var/www/html/store index:reindex catalog_product_attribute,catalog_url,catalog_product_flat,catalog_category_flat,catalog_category_product,catalogsearch_fulltext,cataloginventory_stock

我们可以在index:reindex之后传递参数,用逗号分隔。