I recently found the following article regarding using Magento's resource iterator model when calling large product collections, to save on resources - http://www.fontis.com.au/blog/magento/loading-large-collections. However, I'm finding it hard to figure out exactly how to get it to output the exact same data.
So, suppose I'm using the following the get a full product collection and output the sku's:
$productCollection = Mage::getModel('catalog/product')->getCollection();
foreach($productCollection as $product){
echo $product->getSku().',';
}
Using the profiler, I see this is using 1,154,480 bytes to process.
Now using the resource iterator model like so:
function productCallback($args)
{
$product = Mage::getModel('catalog/product');
$product->setData($args['row']);
echo $product->getSku().',';
}
$_productCollection = Mage::getModel('catalog/product')->getCollection();;
$_productCollection = Mage::getSingleton('core/resource_iterator')->walk($_productCollection->getSelect(), array('productCallback'));
This uses 199,912 bytes. So quite a difference to get the same thing, just a basic list of sku's.
But my problem is, for example, if I wanted to make a nicely styled list of products, and get their images, urls etc, I would previously use a foreach loop on $productCollection, as in the first example:
foreach($_productCollection as $product){
echo $product->getSku().',';
};
But this no longer works. It looks like when it goes through the callback, that acts the same as a foreach loop, running each product through in turn.
So, how do I get my collection back in the same format as before, so it again works in a foreach loop? Do I need to add the products to an array? If so, how do I do that?