Beispiel #1
0
 /**
  * Save data to cache
  *
  * @param string $key   cache identifier
  * @param string $value value of cache
  * @param int    $time  expiration time
  *
  * @return mixed
  */
 public function set($key = '', $value = '', $time = 3600)
 {
     return $this->_cache->set($key, $value, $time);
 }