AtomixDB: A Tiny Relational Database in Go

2025-02-26
AtomixDB: A Tiny Relational Database in Go

AtomixDB is a mini relational database entirely written in Go, focusing on implementing and understanding database workings, storage management, and transaction handling. It utilizes a B+ tree storage engine with indexing support, features free list node reuse, transaction support, and concurrent reads. Currently, it supports CREATE, INSERT, GET, UPDATE, DELETE, BEGIN, COMMIT, and ABORT commands. The project is open-source and welcomes contributions.

Development