SMEMBERS key
相关命令
- SADD
 - SCARD
 - SDIFF
 - SDIFFSTORE
 - SINTER
 - SINTERSTORE
 - SISMEMBER
 - SMEMBERS
 - SMOVE
 - SPOP
 - SRANDMEMBER
 - SREM
 - SSCAN
 - SUNION
 - SUNIONSTORE
 
始于1.0.0可用。
时间复杂度: 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.
返回值
Array reply: all elements of the set.
例子
redis> SADD myset "Hello"
- (integer) 1
 
redis> SADD myset "World"
- (integer) 1
 
redis> SMEMBERS myset
- 1) "World"
 - 2) "Hello"
 
This website is open source software developed by Citrusbyte.
The Redis logo was designed by Carlos Prioglio. See more credits.
 
 