lizzy-0323/oasisdb
feat: skiplist enhancement for lsm tree based kv storage
Open
#48 opened on Jul 15, 2025
enhancementhelp wanted
Repository metrics
- Stars
- (99 stars)
- PR merge metrics
- (PR metrics pending)
Description
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.