Skip to main content
  1. Projects/

Redis-Go: Redis built from scratch in Go

· loading
Table of Contents

Redis built from scratch in Go.

Core Features
#

  • In-memory KEY VALUE store
  • RESP Protocol: Redis Serialization Protocol
  • Core Commands: GET, SET, ECHO, and PING.
  • Passive Expiry: Redis’ passive expiry mechanism, ensuring automatic removal of expired keys upon access.
  • RDB Persistence: Redis Database Files persistence for data persistence.
  • Handle Concurrent Clients

Commands
#

  • GET get the VALUE using the KEY
  • SET save the KEY VALUE pair data
  • PING to check the health of Redis server
  • SAVE save the in-memory data to .rdb file

In Progress
#

  • Redis Replication
  • Redis Stream
  • Redis Transaction
  • Redis Pub/Sub

Source Code
#

harisheoran/redis-go

Redis built from scratch in Go.

Go
3
0

Workflows
#

High Level Workflow
#

RDB Persistence Workflow
#

Working Demos
#

RDB Persistence
#

Master-Slave Replication
#

Related

Multi-threaded Proxy server
· loading
Chat System: On-Premises Chat Application for Enterprises
· loading
Scale Mesh: A better Vercel alternative
· loading