Skip to content

Commit

Permalink
Implement TCP server for Redis
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitpaulk committed Jan 26, 2024
1 parent f6f1460 commit 92276ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions course-definition.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ stages:
Welcome to the Build your own Redis challenge! Now that you've got your repository set up, it's time to start building your Redis server.
Redis clients use the [TCP protocol](https://en.wikipedia.org/wiki/Transmission_Control_Protocol) to communicate with a Redis
server. TCP is the same underlying protocol that's used by HTTP, SSH and many other protocols that you're probably familiar with.
server. Don't worry if you're unfamiliar with the TCP protocol, or what Redis clients & servers are. You'll learn more about this in the
next stages.
To implement a Redis server, we'll start with implementing a TCP server. Don't worry if you're unfamiliar with the TCP protocol, or what Redis
clients & servers are. You'll learn more about this in the next stages.
To implement a Redis server, we'll start with implementing a TCP server.
### Tests
Expand Down

0 comments on commit 92276ab

Please sign in to comment.