Programming exercise to brush up Golang skills and get basic understanding of Redis internals.
This follows Build your own Redis guide religiously with few caveats.
- Uses
Goinstead ofC - Uses
netpackage for socket programming instead of rawsyscalls - Uses
goroutinesinstead ofepollfor implementing concurrency
To run server & client use
> go run build/byor-server/main.go -port=:6060
> go run build/byor-client/main.go -port=:6060