From 9e8b06f62f1085e3a1dddf273503e1ea9d955b5d Mon Sep 17 00:00:00 2001 From: root Date: Thu, 25 Dec 2025 16:29:16 +0800 Subject: [PATCH 1/2] Add Code a database in 45 steps. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ab8ebd9..03048ae 100644 --- a/README.md +++ b/README.md @@ -134,6 +134,7 @@ It's a great way to learn. * [**Clojure**: _An Archaeology-Inspired Database_](http://aosabook.org/en/500L/an-archaeology-inspired-database.html) * [**Crystal**: _Why you should build your own NoSQL Database_](https://medium.com/@marceloboeira/why-you-should-build-your-own-nosql-database-9bbba42039f5) * [**Go**: _Build Your Own Database from Scratch: Persistence, Indexing, Concurrency_](https://build-your-own.org/database/) +* [**Go**: _Code a database in 45 steps: a series of test-driven small coding puzzles_](https://trialofcode.org/database/) * [**Go**: _Build Your Own Redis from Scratch_](https://www.build-redis-from-scratch.dev/) * [**JavaScript**: _Dagoba: an in-memory graph database_](http://aosabook.org/en/500L/dagoba-an-in-memory-graph-database.html) * [**Python**: _DBDB: Dog Bed Database_](http://aosabook.org/en/500L/dbdb-dog-bed-database.html) From f4cf332e3fe63ae05724ae52c6bc4f7b91754fdc Mon Sep 17 00:00:00 2001 From: root Date: Thu, 25 Dec 2025 16:32:21 +0800 Subject: [PATCH 2/2] Update the subtitle of Build Your Own Database from Scratch. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 03048ae..cd679f7 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ It's a great way to learn. * [**C#**: _Build Your Own Database_](https://www.codeproject.com/Articles/1029838/Build-Your-Own-Database) * [**Clojure**: _An Archaeology-Inspired Database_](http://aosabook.org/en/500L/an-archaeology-inspired-database.html) * [**Crystal**: _Why you should build your own NoSQL Database_](https://medium.com/@marceloboeira/why-you-should-build-your-own-nosql-database-9bbba42039f5) -* [**Go**: _Build Your Own Database from Scratch: Persistence, Indexing, Concurrency_](https://build-your-own.org/database/) +* [**Go**: _Build Your Own Database from Scratch: From B+Tree To SQL in 3000 Lines_](https://build-your-own.org/database/) * [**Go**: _Code a database in 45 steps: a series of test-driven small coding puzzles_](https://trialofcode.org/database/) * [**Go**: _Build Your Own Redis from Scratch_](https://www.build-redis-from-scratch.dev/) * [**JavaScript**: _Dagoba: an in-memory graph database_](http://aosabook.org/en/500L/dagoba-an-in-memory-graph-database.html)