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
Go
instead ofC
- Uses
net
package for socket programming instead of rawsyscalls
- Uses
goroutines
instead ofepoll
for 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