Hello
I’m currently working on the Redis challenge and have implemented basic command handling, but I’m running into an issue with the PING
command response. According to the instructions, sending PING
should return a +PONG\r\n
response.
However, when I run my implementation, the tester fails at this stage, stating that the response is incorrect. I’ve checked my string formatting and ensured that I’m appending the correct CRLF characters, but the issue persists.
I suspect the problem might be related to how my server reads and writes data, or possibly a minor formatting mistake that I haven’t spotted. Has anyone else encountered a similar issue? Checked Redis Challenge: Stuck on Command Processing MLOps documentation guide for reference .
Any debugging tips or insights on how the tester verifies the response would be greatly appreciated!
Thanks in advance for any help!