RESP3 icon indicating copy to clipboard operation
RESP3 copied to clipboard

RESP protocol V3 repository. Contains the specification, and other related resource

Results 28 RESP3 issues
Sort by recently updated
recently updated
newest added

Please note that the Redis project, which implements a large subset of the RESP3 spec, will be maintaining its independent copy of the 74adea588783e463c7e84793b325b088fe6edd1c as committed by the Creatore in...

Just some small typos I noticed while reading!

The first protocol example in the spec is: "$11\r\nhelloworld\r\n" This is incorrect. Either of these would be correct: "$10\r\nhelloworld\r\n" "$11\r\nhello world\r\n"

In the Blob String section the literal "hello world" appeared, incorrectly, as "helloworld" throwing off length fields by 1.

Hey Redis Team! I've looked through the RESP3 spec, it looks great! One thing that sprung to mind is passing metadata in the request/response cycle. In MySQL, for example, we...

What if the initial `HELLO` message could either end with CRLF or just a single LF, and which one is used determines wether the rest of the connection will use...

The specification indicates that they should be treated as a dictionary / hash structure, but it isn't clear what should happen if duplicate keys are encountered. The specific scenarios are...