Return the difference between sets
redis.sadd("set1", "a", "b", "c"); redis.sadd("set2", "c", "d", "e"); assert redis.sdiff("set1", "set2") == {"a", "b"}
The keys of the sets to perform the difference operation on.
The resulting set.
Was this page helpful?