Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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.