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

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.

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