我正在尝试从我的Magento商店获取产品列表,我只需要为每个产品加载三个属性,我认为,这比我加载整个产品所需的时间要少得多。现在,要么我做得不对,要么我错了以上。这是我的剧本:
<?php
$script_start = microtime(true);
// Load Magento core
require_once '../app/Mage.php';
Mage::app();
// Load products :: collection
$query_create_start = microtime(true);
$prod_catalog = Mage::getModel("catalog/product")->getCollection()->
addAttributeToSelect('sku')->
addAttributeToSelect('name')->
addAttributeToSelect('category_ids');
$query_create_end = microtime(true);
$query_create_time = $query_create_end - $query_create_start;
echo "Query creation took $query_create_time seconds.<br>";
$product_loop_start = microtime(true);
foreach($prod_catalog as $product) {
var_dump($product);
$one_product_loop = microtime(true);
$one_product_time = $one_product_loop - $product_loop_start;
echo "Getting one product took $one_product_time seconds.<";
die('done');
}
$product_loop_end = microtime(true);
?>
这是输出(没有转储数据):
Query creation took 0.0043220520019531 seconds.
one product took 32.509027004242 seconds
现在,当我看一下产品var_dump时,我发现它加载了比我问的更多的属性:
object(Mage_Catalog_Model_Product)#74 (32) {
["_cacheTag":protected]=>
string(15) "catalog_product"
["_eventPrefix":protected]=>
string(15) "catalog_product"
["_eventObject":protected]=>
string(7) "product"
["_canAffectOptions":protected]=>
bool(false)
["_typeInstance":protected]=>
NULL
["_typeInstanceSingleton":protected]=>
NULL
["_linkInstance":protected]=>
NULL
["_customOptions":protected]=>
array(0) {
}
["_urlModel":protected]=>
NULL
["_errors":protected]=>
array(0) {
}
["_optionInstance":protected]=>
NULL
["_options":protected]=>
array(0) {
}
["_reservedAttributes":protected]=>
NULL
["_isDuplicable":protected]=>
bool(true)
["_calculatePrice":protected]=>
bool(true)
["_defaultValues":protected]=>
array(0) {
}
["_storeValuesFlags":protected]=>
array(0) {
}
["_lockedAttributes":protected]=>
array(0) {
}
["_isDeleteable":protected]=>
bool(true)
["_isReadonly":protected]=>
bool(false)
["_resourceName":protected]=>
string(15) "catalog/product"
["_resource":protected]=>
NULL
["_resourceCollectionName":protected]=>
string(26) "catalog/product_collection"
["_dataSaveAllowed":protected]=>
bool(true)
["_isObjectNew":protected]=>
NULL
["_data":protected]=>
array(12) {
["entity_id"]=>
string(1) "7"
["entity_type_id"]=>
string(1) "4"
["attribute_set_id"]=>
string(1) "4"
["type_id"]=>
string(6) "simple"
["sku"]=>
string(10) "1000000000"
["has_options"]=>
string(1) "0"
["required_options"]=>
string(1) "0"
["created_at"]=>
string(19) "2016-07-11 11:05:03"
["updated_at"]=>
string(19) "2017-03-03 21:14:21"
["name"]=>
string(62) "My simple product"
["is_salable"]=>
string(1) "1"
["stock_item"]=>
object(Varien_Object)#49 (7) {
["_data":protected]=>
array(1) {
["is_in_stock"]=>
string(1) "1"
}
["_hasDataChanges":protected]=>
bool(false)
["_origData":protected]=>
NULL
["_idFieldName":protected]=>
NULL
["_isDeleted":protected]=>
bool(false)
["_oldFieldsMap":protected]=>
array(0) {
}
["_syncFieldsMap":protected]=>
array(0) {
}
}
}
["_hasDataChanges":protected]=>
bool(true)
["_origData":protected]=>
NULL
["_idFieldName":protected]=>
string(9) "entity_id"
["_isDeleted":protected]=>
bool(false)
["_oldFieldsMap":protected]=>
array(0) {
}
["_syncFieldsMap":protected]=>
array(0) {
}
}
有什么想法吗?
答案 0 :(得分:1)
系统加载一个产品时,默认情况下会加载所有静态属性。
静态属性存储在主实体表“catalog_product_entity”中,其他属性根据该属性的backen_type存储在相关表中。例如,'name'存储在'catalog_product_entity_varchar'中。
addAttributeToSelect 方法仅影响非静态属性,因此在您的情况下,您可以看到许多已加载的静态属性。
您可以尝试以下代码:
$prod_catalog = Mage::getModel("catalog/product")->getCollection();
$prod_catalog->getSelect()->reset("columns")->columns(array("sku","entity_id"));
$prod_catalog->addAttributeToSelect('name');
foreach($prod_catalog as $product) {
$category_ids = $product->getCategroyIds();
###you code
}
提示:虽然category_ids是静态的,但主实体表中没有列以及其他产品实体表,所以运行addAttributeToSelect('categroy_ids')或添加到列函数,类别ID数据是没有意义的从另一个表catalog_category_product“)
答案 1 :(得分:0)
您可以尝试将Mage::getResourceModel(‘catalog/product’)->getAttributeRawValue($productId, $atrributeCode, $storeId)
用于单个属性而不是getCollection()
,可能会更快地满足您的需求。
答案 2 :(得分:0)
您已启用平板产品。 扁平产品索引器生成的平台仅包含有效产品。 这是出于性能原因。由于您不打算在前端使用它们,因此无需为已禁用的产品编制索引。 (并且平面表仅用于前端)。
如果您尝试使用自定义脚本获取产品,并且需要获取已禁用的产品,则可以执行此操作。
$ collection = Mage :: getResourceModel(&#39; catalog / product_collection&#39;) - &gt; ...在这里添加过滤器。