MGDigital\BusQue\Redis\PHPRedis\PHPRedisAdapter::hGet PHP Method

hGet() public method

public hGet ( string $key, string $field )
$key string
$field string
    public function hGet(string $key, string $field)
    {
        return $this->tryCatch(function () use($key, $field) {
            return $this->redis->hGet($key, $field);
        });
    }