Skip to main content

ZRANDMEMBER

Returns one or more random members from a sorted set, optionally with their scores.
1 min read

Arguments#

keystrrequired#

The key of the sorted set

countint#

The number of members to return

withscoresbool#

Whether to return the scores along with the members

Response#

str | Tuple[str, float] | List[str] | List[Tuple[str, float]]

The random member(s) from the sorted set

If no count is specified, a single member is returned. If count is specified, a list of members is returned.

If withscores, members are returned as a tuple of (member, score).

Was this page helpful?