MGDigital\BusQue\Redis\Predis\PredisAdapter::lLen PHP Method

lLen() public method

public lLen ( string $key ) : integer
$key string
return integer
    public function lLen(string $key) : int
    {
        return $this->tryCatch(function () use($key) {
            return $this->client->llen($key);
        });
    }