Skip to content

Commit

Permalink
Implement support for the PING command in TCP server
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitpaulk committed Jan 24, 2024
1 parent 1030cbc commit 6abcc1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion course-definition.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ stages:
description_md: |-
🎉 You now have a TCP server running on port 6379! It doesn't do anything useful yet though, let's change that.
In this stage, you'll implement support for one of the simplest Redis commands: the [PING](https://redis.io/commands/ping) command.
In this stage, you'll implement support for the [PING](https://redis.io/commands/ping) command.
As mentioned in the previous stage, Redis clients use the [TCP protocol](https://en.wikipedia.org/wiki/Transmission_Control_Protocol) to communicate with a Redis server. They
do this by sending "[commands](https://redis.io/commands/)" to the server. The server then sends a "response" back to the client.
Expand Down

0 comments on commit 6abcc1a

Please sign in to comment.