Redis SINTERSTORE Command Explained

In Redis, the SINTERSTORE command is the same as the SINTER command, except that it stores the result in the specified key, instead of returning it.

It stores the members of the set resulting from the intersection of all the given sets.

If the destination key already exists, it’s overwritten. If it doesn’t exist, it’s created and the resulting members are added to it.

Continue reading