Esto funciona bien en Magento CE 1.6 y versiones posteriores:
$event = Mage::getSingleton('index/indexer')->logEvent(
$product,
$product->getResource()->getType(),
Mage_Index_Model_Event::TYPE_SAVE,
false
);
Mage::getSingleton('index/indexer')
->getProcessByCode('catalog_url') // Adjust the indexer process code as needed
->setMode(Mage_Index_Model_Process::MODE_REAL_TIME)
->processEvent($event);
Los códigos indexadores disponibles se pueden ver usando la consulta:
SELECT indexer_code FROM index_process;
En un Magento 1.7 nativo hay:
+---------------------------+
| indexer_code |
+---------------------------+
| cataloginventory_stock |
| catalogsearch_fulltext |
| catalog_category_flat |
| catalog_category_product |
| catalog_product_attribute |
| catalog_product_flat |
| catalog_product_price |
| catalog_url |
| groupscatalog2_category |
| groupscatalog2_product |
| tag_summary |
+---------------------------+
En Magento EE 1.13 es diferente, allí el indexador recoge automáticamente las entidades cambiadas en cada ejecución cron (cada minuto).
ACTUALIZAR
La respuesta anterior es 100% correcta de todos modos, creo que la información a continuación puede agregar algo más.
Si necesita cambiar solo algunos valores de atributos en un producto y actualizar automáticamente la tabla de índice relativo, puede usar esta función:
Mage::getSingleton('catalog/product_action')->updateAttributes();
si desea gestionar la reindexación por su cuenta, utilice el modelo de recurso en su lugar: Mage::getResourceSingleton('catalog/product_action')->updateAttributes();
Por ejemplo, uso la siguiente función para actualizar rápidamente solo ciertos atributos en un producto.
public function updateProductAttribute($product_id, $arrayChanges, $reindex = true)
{
if (!is_array($product_id)) {
$product_id = array($product_id);
}
// ths should trigger all required reindex
$update = Mage::getSingleton('catalog/product_action');
// Update value
if (!$reindex) {
$update = Mage::getResourceSingleton('catalog/product_action');
}
$update->updateAttributes($product_id, $arrayChanges, 0);
}
Nota:
Si necesita cambiar la misma pareja de atributos / valores en un grupo de productos, puede pasar toda la matriz deproduct_ids