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:

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 ↑