Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hemanta212/codecrafters-redis-go

Codecrafters go redis track
https://github.com/hemanta212/codecrafters-redis-go

codecrafters codecrafters-redis go redis

Last synced: 3 days ago
JSON representation

Codecrafters go redis track

Awesome Lists containing this project

README

        

# Toy Redis Implementation

## Important Resources
- Challenge outline guide: https://codecrafters.io/challenges/redis
- Redis Protocol Spec : https://redis.io/docs/reference/protocol-spec/
- Debugging your implementation: https://docs.codecrafters.io/challenges/debug-test-failures-redis
- Redis command docs: https://redis.io/commands/set

## CodeCrafer's ["Build Your Own Redis" Challenge](https://codecrafters.io/challenges/redis).
In this challenge, you build a toy Redis clone that's capable of handling
basic commands like `PING`, `SET` and `GET`. Along the way we learn about
event loops, the Redis protocol and more.

head over to [codecrafters.io](https://codecrafters.io) to try the challenge.