Чтение кэша программно

Код для Magento 1.x

Mage::app()->getCacheInstance()->load($cacheKey);

Код для Magento 2

/**
 * @param string $key
 * @return string|false
 */
function df_cache_load($key) {
	/** @var \Magento\Framework\ObjectManagerInterface $om */
	$om = \Magento\Framework\App\ObjectManager::getInstance();
	/** @var \Magento\Framework\App\CacheInterface $cache */
	$cache = $om->get('Magento\Framework\App\CacheInterface');
	return $cache->load($key);
}