get($key); }// a set get return $return;// a return }// get many value /** * Store multiple items in the cache for a given number of minutes. * * @param array $values * @param int $minutes * @return void */ public function putMany(array $values, $minutes)// Store multiple items in the cache for a given number of minutes. { foreach ($values as $key => $value) { $this->put($key, $value, $minutes); } }// a big set putMany}