📄️ BZPOPMAX
Learn to use Redis BZPOPMAX command which removes and returns the member with the highest score from one or more sorted sets.
📄️ BZPOPMIN
Learn to use Redis BZPOPMIN command which removes and returns the member with the smallest score from one or more sorted sets.
📄️ ZADD
Learn how to use Redis ZADD command to add a member to a sorted set with a given score.
📄️ ZCARD
Learn to use Redis ZCARD command to get the total number of elements in a sorted set.
📄️ ZCOUNT
Learn to use Redis ZCOUNT command which counts elements in a sorted set with scores within a given range.
📄️ ZDIFF
Learn to use Redis ZDIFF command to compute the difference between two or more sorted sets.
📄️ ZINCRBY
Learn to use Redis ZINCRBY to increment the score of a member in a sorted set.
📄️ ZINTERSTORE
Learn how to use Redis ZINTERSTORE command to intersect multiple sorted sets and store the result.
📄️ ZLEXCOUNT
Learn how to use Redis ZLEXCOUNT command to count elements in a sorted set between two given lexicographical values.
📄️ ZMSCORE
Learn to use Redis ZMSCORE which returns scores for given members in a sorted set.
📄️ ZPOPMAX
Learn how to use Redis ZPOPMAX command to remove and return the member with the highest score in a sorted set.
📄️ ZPOPMIN
Learn how to use Redis ZPOPMIN command to remove and return the member with the lowest score in a sorted set.
📄️ ZRANGE
Learn to use Redis ZRANGE command to fetch elements in a specific range from a sorted set.
📄️ ZRANGEBYLEX
Learn to use Redis ZRANGEBYLEX command to retrieve elements by their lexical range in a sorted set.
📄️ ZRANGEBYSCORE
Learn how to use Redis ZRANGEBYSCORE which returns elements with scores within a given range in a sorted set.
📄️ ZRANK
Learn how to use Redis ZRANK command to determine the index of a member in a sorted set, with scores ordered from low to high.
📄️ ZREM
Learn how to use Redis ZREM command to remove members from a sorted set.
📄️ ZREMRANGEBYLEX
Learn how to use Redis ZREMRANGEBYLEX command to remove all members in a sorted set between a specified lexicographical range.
📄️ ZREMRANGEBYRANK
Learn how to use Redis ZREMRANGEBYRANK command to remove all members in a sorted set within the given indexes.
📄️ ZREMRANGEBYSCORE
Learn how to use Redis ZREMRANGEBYSCORE command to remove all members in a sorted set within the given scores.
📄️ ZREVRANGE
Learn how to use Redis ZREVRANGE command to return a range of members in a sorted set, by index, with scores ordered from high to low.
📄️ ZREVRANGEBYLEX
Learn how to use Redis ZREVRANGEBYLEX command to return all members of a sorted set between a range of lexicographical order in reverse.
📄️ ZREVRANGEBYSCORE
Learn how to use Redis ZREVRANGEBYSCORE command to retrieve members of a sorted set by score in descending order.
📄️ ZREVRANK
Learn how to use Redis ZREVRANK to determine the index of a member in a sorted set, with scores ordered from high to low.
📄️ ZSCAN
Learn how to use Redis ZSCAN command to incrementally iterate sorted sets elements and associated scores.
📄️ ZSCORE
Learn how to use Redis ZSCORE command to get the score associated with the given element in a sorted set.
📄️ ZUNION
Learn how to use Redis ZUNION command to perform a union of multiple sorted sets, getting the sorted set of unique elements.
📄️ ZUNIONSTORE
Learn how to use Redis ZUNIONSTORE command to apply set operations on sorted sets and store the resulting set in a new key.