示例#1
0
文件: Caching.php 项目: luismayta/zrt
 /**
  * Store cache
  *
  * @return void
  */
 public function dispatchLoopShutdown()
 {
     if (self::$_disableCache || $this->getResponse()->isRedirect() || null === $this->_key) {
         // We can't or don't want to cache this page.
         return;
     }
     // Cache this page.
     Zrt_Cache::save($this->getResponse(), $this->_key);
 }