Exemple #1
0
 /**
  * Retrieve an item from the cache by key.
  *
  * @param  string  $key
  * @return mixed
  */
 public function get($key)
 {
     $value = $this->apc->get($this->prefix . $key);
     if ($value !== false) {
         return $value;
     }
 }