getMemcache()->getstats(); } public function get($key) { if (!$this->contains($key)) { throw new Exception('Unable to retrieve the value'); } return $this->fetch($key); } public function deleteMulti(array $array_keys) { foreach ($array_keys as $id) { $this->delete($id); } return $this; } }