A simple Redis server implementation in Go.
The implementation is divided into multiple packages, each has a directory in the root of the project with a README file that explains what the package does.
To build the project, run:
go build -o redis-server .
To run the server you can execute the binary that was built in the previous step:
./redis-server
You can configure the server by passing different flags, to view the available flags run:
./redis-server -h