/**
  * Removes the specified fields from the hash stored at key.
  *
  * @param $hash
  * @param $key
  * @return mixed
  */
 public function hdel($hash, $key)
 {
     return $this->client->hdel($hash, $key);
 }