Hacker News new | ask | show | jobs
by AndrewO 5570 days ago
IIRC, Redis uses skip lists in its implementation of sorted sets. Good rundown of the data structure.
1 comments

Exactly, Redis uses augmented skiplists so that we can support the rank operation in O(log(N)).