Returns all the members of the set value stored at key
.
This has the same effect as running SINTER with one argument key
.
*Return value
Array reply: all elements of the set.
*Examples
redis>
SADD myset "Hello"
(integer) 1redis> SADD myset "World"
(integer) 1redis> SMEMBERS myset
1) "Hello" 2) "World"