/**
  * Retrieve cache object
  *
  * @return Zend_Cache_Core
  */
 public function getCache()
 {
     if (!$this->_cache) {
         $this->_initCache();
     }
     return $this->_cache->getFrontend();
 }