Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 785 Bytes

README.md

File metadata and controls

19 lines (10 loc) · 785 Bytes

Redis in Go

Build Status

A key value store in Go implementing some of the Redis Serialization Protocol. This also comes with a Dockerfile and a Jenkinsfile for easier deployments. Built as a practice project.

Install & Run

You will require a redis client such as redis-cli to interact with the server.

You can build and run the server with go run ., which launches it at localhost:6379. You should then be able to connect using redis-cli.

To run it within a container instead, you can build with:

docker build -t [image_name] .

followed by running it with the default 6379 port exposed:

docker run -p 6379:6379 [image_name]