MGDigital\BusQue\Redis\Predis\PredisAdapter::hGet PHP Метод

hGet() публичный Метод

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->client->hget($key, $field);
        });
    }