/**
  * Returns the value associated with field in the hash stored at key.
  *
  * @param $hash
  * @param $key
  * @return mixed
  */
 public function hget($hash, $key = null)
 {
     return $this->client->hget($hash, $key);
 }