Back to Yugabyte Db

SMEMBERS

docs/content/stable/yedis/api/smembers.md

2026.1.0.0-b29584 B
Original Source

Synopsis

SMEMBERS key

This command selects all members of the set that is associated with the given key.

  • If key is associated with a value that is not a set, an error is raised.
  • If key does not exist, no value is returned.

Return value

Returns all members of the given set.

Examples

sh
$ SADD yuga_world "Africa"
1
sh
$ SADD yuga_world "America"
1
sh
$ SMEMBERS yuga_world
1) "Africa"
2) "America"

See also

sadd, scard, sismember, srem