This is going to be a series of post taken from my learnings of “Designing data-intensive applications” by “Martin Kleppmann” Bare minimal We will start by making a simpler version of a database and will continue our analysis by building over it. #!/bin/bash
db_set(){
echo "$1,$2" >> database
}
db_get(){
grep "^$1," database |…