https://github.com/jesserc/resp-parser
A minimal RESP (Redis Serialization Protocol) parser implemented in Go, focused specifically on parsing RESP arrays that contain only bulk strings.
https://github.com/jesserc/resp-parser
Last synced: about 1 year ago
JSON representation
A minimal RESP (Redis Serialization Protocol) parser implemented in Go, focused specifically on parsing RESP arrays that contain only bulk strings.
- Host: GitHub
- URL: https://github.com/jesserc/resp-parser
- Owner: Jesserc
- Created: 2024-07-26T23:32:36.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-27T02:24:47.000Z (almost 2 years ago)
- Last Synced: 2025-02-13T04:48:17.159Z (over 1 year ago)
- Language: Go
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Minimal RESP Parser for Redis
## Overview
This is a basic implementation of a RESP (Redis Serialization Protocol) parser in Go. The parser is designed to handle RESP commands and bulk strings only. It does not cover the full Redis serialization protocol.
## Features
- Parse RESP commands from a buffered reader
- Extract and return command and arguments as a slice
- Basic support for RESP array of bulk strings