Logos, Thumos & Code

Hello, I'm Jose A. Garcia
Logos, Thumos & Code

I am a software engineer, based in London, UK.

A minimalist coding blog where I document my programming journey, share useful snippets, and explore various technologies.

This space serves as both a learning log and a reference for future me (and hopefully helpful to others too).

Latest Posts

Adding replication to the Key-Value Store

During the past few weeks I’ve built a basic key-value store that persists data to disk. It works, but only as a single node, so there is a …

Notes on Eio

This weekend I took a step back from working on my Key-Value store to make sure I understand the concurrency model of Eio, the OCaml 5 library that …

A basic Write Ahead Log

This weekend I decided to add some basic persistence to my Key-Value store. I considered going directly into B-Trees or LSM, but they are quite …