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

sAdd() public method

public sAdd ( string $key, array $members )
$key string
$members array
    public function sAdd(string $key, array $members)
    {
        $this->tryCatch(function () use($key, $members) {
            $this->redis->sAdd($key, ...$members);
        });
    }