Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jennwah/redis-clone-go
A minimal Redis server built in Go. Adheres to Redis serialization protocol specification. Supports only PING, GET, SET, HSET, HGET, HGETALL Commands with AOF persistence. It serves as an exercise to try and build Redis server from scratch in Go.
https://github.com/jennwah/redis-clone-go
Last synced: 8 days ago
JSON representation
A minimal Redis server built in Go. Adheres to Redis serialization protocol specification. Supports only PING, GET, SET, HSET, HGET, HGETALL Commands with AOF persistence. It serves as an exercise to try and build Redis server from scratch in Go.
- Host: GitHub
- URL: https://github.com/jennwah/redis-clone-go
- Owner: jennwah
- Created: 2024-06-18T14:58:12.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-18T15:01:16.000Z (5 months ago)
- Last Synced: 2024-06-19T19:15:08.660Z (5 months ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Build Redis from scratch in Go
A minimal Redis server built in Go. Adheres to Redis serialization protocol specification. Supports only PING, GET, SET, HSET, HGET, HGETALL Commands with AOF persistence. It serves as an exercise to try and build Redis server from scratch in Go.