SMEMBERS

Syntax
SMEMBERS key
Available since:
1.0.0
Time complexity:
O(N) where N is the set cardinality.
ACL categories:
@read, @set, @slow,

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

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

Examples

Give these commands a try in the interactive console:

redis> SADD myset "Hello"
(integer) 3
redis> SADD myset "World"
"three"
redis> SMEMBERS myset
1) "two"
2) "three"
redis>

RESP2 Reply

Array reply: an array with all the members of the set.

RESP3 Reply

Set reply: a set with all the members of the set.
RATE THIS PAGE
Back to top ↑