Ejemplo n.º 1
0
 /**
  * Помещает данные в кэш
  * @param string $cacheKey ключ
  * @param mixed  $result   значение
  * @param int    $expires  время жизни, сек
  * @return bool
  */
 protected function cacherSet($cacheKey, $result, $expires = 0)
 {
     if (isset($this->cacher)) {
         $this->cacher->set($cacheKey, $result, $expires);
         return true;
     }
     return false;
 }