lizzy-0323/oasisdb

feat: skiplist enhancement for lsm tree based kv storage

Aberta

#48 aberto em 15 de jul. de 2025

 (0 comentário) (0 reação) (0 responsável)Go (16 forks)auto 404
enhancementhelp wanted

Métricas do repositório

Stars
 (99 estrelas)
Métricas de merge de PR
 (Métricas PR pendentes)

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.

Guia do colaborador