ZDIFF numkeys key [key ...] [WITHSCORES]

This command is similar to ZDIFFSTORE, but instead of storing the resulting sorted set, it is returned to the client.

@return

@array-reply: the result of the difference (optionally with their scores, in case the WITHSCORES option is given).

@examples

redis> ZADD zset1 1 "one"
TBD
redis> ZADD zset1 2 "two"
TBD
redis> ZADD zset1 3 "three"
TBD
redis> ZADD zset2 1 "one"
TBD
redis> ZADD zset2 2 "two"
TBD
redis> ZDIFF 2 zset1 zset2
TBD
redis> ZDIFF 2 zset1 zset2 WITHSCORES