nima1981 icon

Untitled

nima1981 | PRO | 04/20/17 08:45:09 AM UTC | 0 ⭐ | 151 👁️ | Never ⏰ | []
PHP |

360 B

|

None

|

0 👍

/

0 👎

$cache = Mage::app()->getCache();
 
if($cached_product_collection = $cache->load('product-collection-' . $this->getCategoryId()))
    $_productCollection = $cached_product_collection;
else{
    $_productCollection = $this->getLoadedProductCollection();
    $cache->save($_productCollection, 'product-collection-' . $this->getCategoryId(), array('product-collection'), 60*5);
}

Comments