/** * Deletes an item from the cache * @param string $key Name of the cache item ID * @return bool True if deleted, false if not */ public function delete($key) { return parent::delete($key); }