我一直在寻找没有效果的问题的解决方案。
我想列出简单且可配置的产品,并使用可配置的产品。问题在于性能,因为要使用这些产品,我必须使用这种方法:
Mage::getModel('catalog/product_type_configurable')->getUsedProducts(null, $product)
仅属于一个项目。您可以想象,对于许多产品,存在大量SQL查询。如何进行将used_products
属性添加到集合的查询?
答案 0 :(得分:2)
@b.enoit.be建议的getUsedProductCollection()
是一个很好的起点。
public function getUsedProductCollection($product = null)
{
$collection = Mage::getResourceModel('catalog/product_type_configurable_product_collection')
->setFlag('require_stock_items', true)
->setFlag('product_children', true)
->setProductFilter($this->getProduct($product));
if (!is_null($this->getStoreFilter($product))) {
$collection->addStoreFilter($this->getStoreFilter($product));
}
return $collection;
}
复制并调整以查找用于多种可配置产品的二手产品:
$collection = Mage::getResourceModel('catalog/product_type_configurable_product_collection')
->setFlag('require_stock_items', true)
->setFlag('product_children', true);
$collection->getSelect()->where('link_table.parent_id in ?', $productIds);
$collection->getSelect()->group('e.entity_id');
$productIds
必须是包含可配置产品的所有ID的数组。如果它还包含简单产品的ID也没关系。你可以建立一个JOIN,但是因为你还需要这些,我建议你首先加载原始集合,然后再加载使用过的相关产品。如果没有显着的性能提升,UNION和JOIN很难理解替代方案。
group('e.entity_id')
确保每个产品只被选中一次,以避免因集合中的重复项而导致异常。
答案 1 :(得分:1)
您在文件app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
中使用的同一模型中还有另一个功能:
public function getUsedProductCollection($product = null)
{
$collection = Mage::getResourceModel('catalog/product_type_configurable_product_collection')
->setFlag('require_stock_items', true)
->setFlag('product_children', true)
->setProductFilter($this->getProduct($product));
if (!is_null($this->getStoreFilter($product))) {
$collection->addStoreFilter($this->getStoreFilter($product));
}
return $collection;
}
所以你可能想尝试这样做并看看它给你的回报:
$collection = Mage::getResourceModel('catalog/product_type_configurable_product_collection')
->setFlag('require_stock_items', true)
->setFlag('product_children', true)
->load();
但是由于Varien_Collection的工作方式,如果你有两个可配置的简单产品,你可能会得到这样的错误:
Uncaught exception 'Exception' with message 'Item (Mage_Catalog_Model_Product) with the same id "some_id_here" already exist'
答案 2 :(得分:0)
如果您遇到性能问题,最好使用直接的SQL查询,因为它会花费更少的内存,而且速度更快。 像这样的东西;
$coreResource = Mage::getSingleton('core/resource');
$connect = $coreResource->getConnection('core_write');
$prid = 12535;// Product entity id
$result = $connect->query("SELECT product_id FROM catalog_product_super_link WHERE parent_id=$prid");
while ($row = $result->fetch()):
$sprid = $row['product_id'];
// Now sprid contain the simple product id what is associated with that parent
endwhile;