Yesterday I wrote some code to pull a collection of products. This code worked fine, however today, the code doe snot work, nothing has changed, I cannot understand why it won't work.
This is what I coded
$collection = Mage::getModel('catalog/product')->getCollection()
->addAttributeToSelect('MPN')
->addAttributeToSelect('JAN')
->addAttributeToSelect('UPC')
->addFieldToFilter(array(
array('attribute'=>'type_id','eq'=>'simple')
))
->setPage(1,10);
$collection->load();
foreach($collection as $item)
{
echo print_r($item->getdata());
}
Yesterday I was able to see a list of products that contained my MPN's, JAN's and UPC's (these are custom attributes in the backend). Today they don't load at all. It's weird as hell, I think maybe my understanding of collections is not as good as I thought.
Any help would be much appreciated.
EDIT:
Refreshing the magento cache seemed to make everything work again. Does this mean that collection sometimes use the cache, is there some way I can write the code so that it does not use the cache?