Sorted sets
📄️ ZADD Add one or more members to a sorted set, or update its score if it already exists
📄️ ZCARD Get the number of members in a sorted set
📄️ ZCOUNT Count the members in a sorted set with scores within the given values
📄️ ZINCRBY Increment the score of a member in a sorted set
📄️ ZINTERSTORE Intersect multiple sorted sets and store the resulting sorted set in a new key
📄️ ZLEXCOUNT Count the number of members in a sorted set between a given lexicographical range
📄️ ZMSCORE Get the score associated with the given members in a sorted set
📄️ ZPOPMAX Remove and return members with the highest scores in a sorted set
📄️ ZPOPMIN Remove and return members with the lowest scores in a sorted set
📄️ ZRANGE Return a range of members in a sorted set
📄️ ZRANGEBYLEX Return a range of members in a sorted set, by lexicographical range
📄️ ZRANGEBYSCORE Return a range of members in a sorted set, by score
📄️ ZRANK Determine the index of a member in a sorted set
📄️ ZREM Remove one or more members from a sorted set
📄️ ZREMRANGEBYLEX Remove all members in a sorted set between the given lexicographical range
📄️ ZREMRANGEBYRANK Remove all members in a sorted set within the given indexes
📄️ ZREMRANGEBYSCORE Remove all members in a sorted set within the given scores
📄️ ZREVRANK Determine the index of a member in a sorted set, with scores ordered from high to low
📄️ ZSCAN Incrementally iterate sorted sets elements and associated scores
📄️ ZSCORE Get the score associated with the given member in a sorted set
📄️ ZUNION Add multiple sorted sets
📄️ ZUNIONSTORE Add multiple sorted sets and store the resulting sorted set in a new key