📄️ BZPOPMAX
Learn how to use the Redis BZPOPMAX command to remove and return the highest score member from sorted sets, plus expert tips beyond the official Redis docs.
📄️ BZPOPMIN
Learn to use the Redis BZPOPMIN command to remove and return the smallest score member from sorted sets, plus expert tips beyond the official doRedis docscs.
📄️ ZADD
Learn how to use the Redis ZADD command to add members to sorted sets with ease, plus expert tips beyond the official Redis docs.
📄️ ZCARD
Learn to use the Redis ZCARD command to get the total number of elements in a sorted set, plus expert tips beyond the official Redis docs.
📄️ ZCOUNT
Learn to use the Redis ZCOUNT command to count elements in a sorted set within a given score range, plus expert tips beyond the official Redis docs.
📄️ ZDIFF
Learn to use the Redis ZCOUNT command to count elements in a sorted set within a given score range, plus expert tips beyond the official Redis docs.
📄️ ZINCRBY
Learn to use the Redis ZINCRBY command to increment the score of a member in a sorted set, plus expert tips beyond the official Redis docs.
📄️ ZINTERSTORE
Learn how to use the Redis ZINTERSTORE command to intersect multiple sorted sets and store the result, plus expert tips beyond the official Redis docs.
📄️ ZLEXCOUNT
Learn how to use the Redis ZLEXCOUNT command to count elements in a sorted set between two lexicographical values, plus expert tips beyond the official Redis docs.
📄️ ZMSCORE
Learn to use the Redis ZMSCORE command to return scores for given members in a sorted set, plus expert tips beyond the official Redis docs.
📄️ ZPOPMAX
Learn how to use the Redis ZPOPMAX command to remove and return the member with the highest score in a sorted set, plus expert tips beyond the official docs.
📄️ ZPOPMIN
Learn how to use the Redis ZPOPMIN command to remove and return the member with the lowest score in a sorted set, plus expert tips beyond the official docs.
📄️ ZRANGE
Learn to use the Redis ZRANGE command to fetch elements in a specific range from a sorted set, plus expert tips beyond the official Redis docs.
📄️ ZRANGEBYLEX
Learn to use the Redis ZRANGEBYLEX command to retrieve elements by their lexical range in a sorted set, plus expert tips beyond the official Redis docs.
📄️ ZRANGEBYSCORE
Learn how to use the Redis ZRANGEBYSCORE command to return elements with scores within a given range in a sorted set.
📄️ ZRANK
Learn how to use Redis' ZRANK command to find a member's index in a sorted set, with scores ordered low to high, plus expert tips beyond the official docs.
📄️ ZREM
Learn how to use the Redis ZREM command to remove members from a sorted set, plus expert tips beyond the official Redis docs.
📄️ ZREMRANGEBYLEX
Use Redis ZREMRANGEBYLEX to remove sorted set members within a lexicographical range, plus expert tips beyond official Redis docs.
📄️ 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.