SMEMBERS key

Available since 1.0.0.

Time complexity: O(N) where N is the set cardinality.

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"

  1. (integer) 1

redis> SADD myset "World"

  1. (integer) 1

redis> SMEMBERS myset

  1. 1) "Hello"
  2. 2) "World"
redis>