SMEMBERS key

Returns all the members of the set value stored at key.

This has the same effect as running SINTER with one argument key.

@return

@array-reply: all elements of the set.

@examples

redis> SADD myset "Hello"
TBD
redis> SADD myset "World"
TBD
redis> SMEMBERS myset