Skip to content

Commit a1ba5f5

Browse files
authored
Clarify key-value storage implementation details
Updated description of key-value storage implementation.
1 parent 43ea606 commit a1ba5f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

course-definition.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ marketing:
5353
* Responding to basic commands like `PING` and `ECHO`
5454
* Parsing the Redis Protocol (RESP) from client requests
5555
* Handling multiple clients concurrently
56-
* Implementing a key-value storage with `SET`, `GET`, and key expiry
56+
* Implementing the `SET` and `GET` commands to store and retrieve data, including automatic key expiry.
5757
5858
At this stage, your Redis will already feel real. You'll be able to connect with the official `redis-cli`, store data, and retrieve it.
5959
@@ -72,7 +72,7 @@ marketing:
7272
* What the Redis Serialization Protocol (RESP) is, and how to parse/encode messages
7373
* How to handle multiple clients concurrently
7474
* How to implement commands like `PING`, `ECHO`, `SET`, and `GET`
75-
* How to manage an in-memory storage
75+
* How to manage a key-value storage
7676
7777
In the advanced stages, you'll discover new programming ideas, such as master-replica synchronization, atomic transactions, and specialized data structures like sorted sets and geospatial indices.
7878

0 commit comments

Comments
 (0)