codecrafters-io / build-your-own-redis

Definition for the redis challenge.
https://app.codecrafters.io/courses/redis/overview
MIT License
108 stars 30 forks source link

Update stage instructions for the later stages for the streams extension #150

Closed libmartinito closed 4 months ago

libmartinito commented 4 months ago

As pointed out by @LakshyaMittal3301, in the later stages, the instructions say that the response when a blocking read times out is a nil bulk string ($3\r\nnil\r\n). This is "nil" (a string), not a nil value.

The nil value representation of a bulk string is as follows $-1\r\n.

The stage instructions should be updated to reflect this.

linear[bot] commented 4 months ago

CC-1077 Update stage instructions for the later stages for the streams extension

libmartinito commented 4 months ago

Fixed by: codecrafters-io/build-your-own-redis#151