summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/zdiff.md
blob: 1b587b9c2a4a8888b2ced68bbff75569644f0e49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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

```cli
ZADD zset1 1 "one"
ZADD zset1 2 "two"
ZADD zset1 3 "three"
ZADD zset2 1 "one"
ZADD zset2 2 "two"
ZDIFF 2 zset1 zset2
ZDIFF 2 zset1 zset2 WITHSCORES
```