示例#1
0
 /**
  * Retrieve Zend_Cache_Manager instance
  *
  * @return \Zend\Cache\Manager
  */
 public function getCacheManager()
 {
     if (null === $this->_manager) {
         $this->_manager = new \Zend\Cache\Manager();
         $options = $this->getOptions();
         foreach ($options as $key => $value) {
             if ($this->_manager->hasCacheTemplate($key)) {
                 $this->_manager->setTemplateOptions($key, $value);
             } else {
                 $this->_manager->setCacheTemplate($key, $value);
             }
         }
     }
     return $this->_manager;
 }
示例#2
0
 public function testGettingPageCacheAlsoCreatesTagCache()
 {
     $manager = new Cache\Manager();
     $tagCacheConfig = $manager->getCacheTemplate('tagCache');
     $tagCacheConfig['backend']['options']['cache_dir'] = $this->getTmpDir();
     $manager->setTemplateOptions('pagetag', $tagCacheConfig);
     $tagCache = $manager->getCache('page')->getBackend()->getOption('tag_cache');
     $this->assertTrue($tagCache instanceof Cache\Core);
 }