Here, we dive deeper into how the client-server works. We are going to get into RESP and create our first Go file in the project. We learn how server and client communicate with RESP
source: https://www.build-redis-from-scratch.dev/en/first-steps
This article series, "Build Redis from Scratch," aims to guide readers through the process of creating a simplified in-memory database similar to Redis. The primary focus is on understanding the fundamental concepts of databases, data structures, and algorithms by exploring the inner workings of Redis. The series aims to demystify the low-level details of databases by providing a step-by-step explanation of building a functional Redis clone. The goal is not to replicate Redis entirely, but rather to implement a subset of its commands, specifically focusing on strings and hashes.
We'll use Go for the series, and follow a guide on the series below
sources: https://www.build-redis-from-scratch.dev