Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/hemanta212/codecrafters-redis-go
- Owner: hemanta212
- Created: 2022-11-13T11:54:56.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-14T15:19:30.000Z (about 2 years ago)
- Last Synced: 2024-10-12T15:48:48.361Z (about 1 month ago)
- Topics: codecrafters, codecrafters-redis, go, redis
- Language: Go
- Homepage:
- Size: 39.1 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.