I thought I’d share a quick and simple method to improving loading times when extracting JSON data from an API within a Magento build. For one particular client, this improved loading times considerably and in some cases by over two seconds. $cache_key = ‘json_feed_name’; $cache_tag = ‘homepage’; if ( false !== ($list = Mage::app()->getCache()->load($cache_key)) ) […]