Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 727 Bytes

File metadata and controls

16 lines (9 loc) · 727 Bytes

RESP Parser (Minimal)

A minimal implementation of the Redis Serialization Protocol (RESP), built directly from the specification.

The goal is correctness at the protocol boundary: byte-level framing, CRLF handling, and strict adherence to RESP types, without Redis-specific assumptions.

This is not a Redis clone and not a production-ready client — it is a learning project focused on understanding how real wire protocols work.

Reference

Docs RESP

Wire Protocol Article

Handwritten Parsers & Lexers in Go Article