SMEMBERS key

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

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

    *Examples

    redis> SADD myset "Hello"

    redis> SMEMBERS myset

    redis>