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
.
Array reply: all elements of the set.
(integer) 1
redis> SADD myset "World" (integer) 1
redis> SMEMBERS myset 1) "Hello"
2) "World"
© 2009–2017 Salvatore Sanfilippo
Licensed under the Creative Commons Attribution-ShareAlike License 4.0.
https://redis.io/commands/smembers