Beispiel #1
0
 /**
  * Deletes all values from cache.
  * This is the implementation of the method declared in the parent class.
  * @return boolean Whether the flush operation was successful.
  */
 protected function flushValues()
 {
     try {
         $this->_yiiron->cacheClear($this->yiironCacheName);
         return true;
     } catch (Exception $e) {
         Yii::log($e->getMessage(), CLogger::LEVEL_ERROR, "ext.yiiron");
         return false;
     }
 }