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

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

public zScore ( string $key, string $value )
$key string
$value string
    public function zScore(string $key, string $value)
    {
        $score = $this->tryCatch(function () use($key, $value) {
            return $this->client->zscore($key, $value);
        });
        return $score === null ? $score : intval($score);
    }