Live data from Hacker News

A new take on hash array mapped tries: MariV2, a performant, embedded database

github.com

1–3 of 3 posts

Re: A new take on hash array mapped tries: MariV2, a performant, embedded database

#2
mariv2 looks to be a direct competitor to bbolt db. Also implemented in go, it utilizes a concurrent ordered array mapped trie as the storage engine, unlike most databases which utilize a B+ or LSM tree. The design is inspired by Phil Bagwell’s Ideal Hash Tree whitepaper. The design is lock free and utilizes a version of mvcc and occ.