getMemcached()->getstats(); } /** * {@inheritdoc} */ public function isServer() { return true; } /** * {@inheritdoc} */ public function get($key) { if ( ! $this->contains($key)) { throw new Exception('Unable to retrieve the value'); } return $this->fetch($key); } /** * {@inheritdoc} */ public function deleteMulti(array $keys) { foreach ($keys as $key) { $this->delete($key); } return $this; } }