Risposte:
Ci sono 2 modi per farlo, uno è ottenere il catalog/product
modello Magento e caricare il prodotto per ID che ti darà l'intero prodotto, quindi impostare il nome e salvarlo.
$product = Mage::getModel('catalog/product')->load(1);
$product->setName('foobar!');
try {
$product->save();
} catch(Exception $e) {
echo "{$e}";
}
Come sottolineato da OP, questo è piuttosto pesante solo per la modifica di un attributo. Ho pensato che lo strumento di aggiornamento di massa degli attributi dovrebbe usare un modo più pulito per farlo e ho trovato la Mage_Catalog_Model_Resource_Product_Action
classe
$product_id = 1;
$store_id = 0;
$action = Mage::getModel('catalog/resource_product_action');
$action->updateAttributes(array($product_id), array(
'name' => 'foobar!'
), $store_id);
Benchmark [AGGIORNAMENTO]
Così ha fatto un rapido script di benchmark e i risultati parlano da soli.
$starttime = microtime(true);
for ($i=20; $i>0; $i--)
{
$action = Mage::getModel('catalog/resource_product_action');
$action->updateAttributes(array(1), array(
'name' => 'foobar!'
), 0);
}
echo "Time: " . (microtime(true) - $starttime) . " seconds\n";
$starttime = microtime(true);
for ($i=20; $i>0; $i--)
{
$product = Mage::getModel('catalog/product')->load(1);
$product->setName('foobar!');
$product->save();
unset($product);
}
echo "Time: " . (microtime(true) - $starttime) . " seconds\n";
Tempo: 0,076527833938599 secondi
Tempo: 4,757472038269 secondi
Se devi salvare solo un attributo e hai già caricato il prodotto, puoi utilizzare anche questo metodo:
$product->setData('attribute_code',$someData);
$product->getResource()->saveAttribute($product,'attribute_code');
Questo metodo è molto più veloce di catalog/resource_product_action