The Cache :: una clase para controlar nuestro Zend_Cache File
Akra’s ha escrito una clase bastante sencilla y muy útil para poder utilizar Zend_Cache File. ejemplo de uso: $cacheEnabled = (bool)getenv('THE_CACHE_ENABLED') ? getenv('THE_CACHE_ENABLED') : false; TheCache::init($cacheEnabled, TMP_DIR.'/the-cache/'); $keyName = 'data-z-a-b'; // unique name describing this data set $data = TheCache::load($keyName)…