lizzy-0323/oasisdb
feat: skiplist enhancement for lsm tree based kv storage
Offen
#48 geöffnet am 15.07.2025
enhancementhelp wanted
Repository-Metriken
- Stars
- (99 Sterne)
- PR-Merge-Metriken
- (PR-Metriken ausstehend)
Beschreibung
At first, I use a simple RWMutex to ensure concurrent safety of the skip list. But such global locks are actually very large. For insert and get operations, we only need to lock the left boundary, which is also one of the reasons why skip list is better than red-black tree.