We need to create a Go library for parsing Redis Serialization Protocol (RESP) data. encodes/decodes various RESP data types, including strings, errors, integers, bulk strings, and arrays.
Tasks
[ ] Create a new Go package/module for the RESP parser
[ ] Implement core functionality to parse RESP data
[ ] Handle different RESP data types: strings, errors, integers, bulk strings, and arrays
[ ] Implement error handling for unknown RESP types
[ ] Create documentation with usage examples
[ ] Write unit tests to ensure proper functionality
We need to create a Go library for parsing Redis Serialization Protocol (RESP) data. encodes/decodes various RESP data types, including strings, errors, integers, bulk strings, and arrays.
Tasks