-
Enhancement
-
Resolution: Done
-
Critical
-
None
-
None
-
None
Collection of strings that assign an order to your elements, and are one of the most advanced data structures in Redis. These are similar to Redis Sets, only that Sets have no order while Sorted Sets associate every member with a score.Â
Redis Sorted Sets Use Cases
- Q&A Platforms: Many Q&A platforms like Stack Overflow and Quora use Redis Sorted Sets to rank the highest voted answers for each proposed question to ensure the best quality content is listed at the top of the page.
- Gaming App Scoreboards: Online gaming apps leverage Redis Sorted Sets to maintain their high score lists, as scores can be repeated, but the strings which contain the unique user details cannot.
- Task Scheduling Service: Redis Sorted Sets are a great tool for a task scheduling service, as you can associate a score to rank the priority of a task in your queue. For any task that does not have a score noted, you can use the WEIGHTS option to a default of 1.
- Geo Hashing: The Redis geo indexing API uses a Sorted Set for the Geo Hash technique which allows you to index locations based on latitude and longitude, turning multi dimensional data into linear data.
source: http://highscalability.com/blog/2019/9/3/top-redis-use-cases-by-core-data-structure-types.html
- incorporates
-
ISPN-14606 ZUNION and ZINTER commands
- Resolved
-
ISPN-14608 ZADD
- Resolved
-
ISPN-14609 ZCARD
- Resolved
-
ISPN-14610 ZCOUNT
- Resolved
-
ISPN-14611 ZDIFF commands
- Resolved
-
ISPN-14612 ZINCRBY
- Resolved
-
ISPN-14613 ZINTERCARD
- Resolved
-
ISPN-14614 ZLEXCOUNT
- Resolved
-
ISPN-14615 ZPOP commands
- Resolved
-
ISPN-14616 ZMSCORE
- Resolved
-
ISPN-14617 ZRANDMEMBER
- Resolved
-
ISPN-14618 ZRANGE commands
- Resolved
-
ISPN-14619 ZRANK commands
- Resolved
-
ISPN-14620 ZREM commands
- Resolved
-
ISPN-14622 ZSCAN
- Resolved
-
ISPN-14623 ZSCORE
- Resolved
-
ISPN-15016 ZMPOP
- Resolved
-
ISPN-15047 ZRANGESTORE
- Resolved
- is incorporated by
-
ISPN-14881 [RESP] 15.0 Commands
- Resolved