修改本页

Redis 命令 客户端 文档 社区 下载 问题 支持 许可

SMEMBERS key

相关命令

始于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"

  1. (integer) 1

redis> SADD myset "World"

  1. (integer) 1

redis> SMEMBERS myset

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

Comments powered by Disqus

This website is open source software developed by Citrusbyte.

The Redis logo was designed by Carlos Prioglio. See more credits.

Sponsored by Redis Support