In Redis, the ZUNIONSTORE
command works in the same way that ZUNION
works, except that it stores the result in a key that we specify.
In other words, it computes the union of the specified sorted sets, then stores the result in the specified key.
Continue reading