You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: internal/test_helpers/course_definition.yml
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,7 @@ extensions:
93
93
name: "Transactions"
94
94
description_markdown: |-
95
95
In this challenge extension you'll add support for [Transactions][redis-transactions] to your Redis implementation.
96
-
96
+
97
97
Along the way, you'll learn about the [MULTI][multi-command], [EXEC][exec-command], and [DISCARD][discard-command] commands, as well as how Redis handles transactions atomically.
In this challenge extension you'll add support for [Lists][redis-lists] to your Redis implementation.
108
108
109
109
Along the way, you'll learn commands like RPUSH, LRANGE, and more.
@@ -114,7 +114,7 @@ extensions:
114
114
115
115
- slug: "pub-sub"
116
116
name: "Pub/Sub"
117
-
description_markdown: |-
117
+
description_markdown: |-
118
118
In this challenge extension you'll add support for [Publish/Subscribe (Pub/Sub)][redis-pub-sub] to your Redis implementation.
119
119
120
120
Along the way, you'll learn commands like [SUBSCRIBE][subscribe-command], [PUBLISH][publish-command], and more.
@@ -125,7 +125,7 @@ extensions:
125
125
126
126
- slug: "sorted-sets"
127
127
name: "Sorted Sets"
128
-
description_markdown: |-
128
+
description_markdown: |-
129
129
In this challenge extension you'll add support for [Sorted Sets (zsets)][redis-zset] to your Redis implementation.
130
130
131
131
Along the way, you'll learn commands like [ZADD][zadd-command], [ZRANGE][zrange-command], and more.
@@ -463,7 +463,7 @@ stages:
463
463
The expiry for a key can be provided using the "PX" argument to the [SET](https://redis.io/commands/set) command. The expiry is provided in milliseconds.
464
464
465
465
```bash
466
-
$ redis-cli SET foo bar px 100 # Sets the key "foo" to "bar" with an expiry of 100 milliseconds
466
+
$ redis-cli SET foo bar PX 100 # Sets the key "foo" to "bar" with an expiry of 100 milliseconds
467
467
OK
468
468
```
469
469
@@ -485,7 +485,7 @@ stages:
485
485
It'll then send a `SET` command to your server to set a key with an expiry:
486
486
487
487
```bash
488
-
$ redis-cli SET foo bar px 100
488
+
$ redis-cli SET foo bar PX 100
489
489
```
490
490
491
491
It'll then immediately send a `GET` command to retrieve the value:
@@ -3576,7 +3576,7 @@ stages:
3576
3576
name: "Blocking retrieval with timeout"
3577
3577
difficulty: medium
3578
3578
marketing_md: In this stage, you will add support for a non-zero timeout duration for the `BLPOP` command.
3579
-
3579
+
3580
3580
# Pub-Sub
3581
3581
- slug: "mx3"
3582
3582
primary_extension_slug: "pub-sub"
@@ -3595,7 +3595,7 @@ stages:
3595
3595
name: "Enter subscribed mode"
3596
3596
difficulty: medium
3597
3597
marketing_md: In this stage, you'll add support for marking a client as having entered subscribed mode.
3598
-
3598
+
3599
3599
- slug: "lf1"
3600
3600
primary_extension_slug: "pub-sub"
3601
3601
name: "PING in subscribed mode"
@@ -3724,4 +3724,4 @@ stages:
3724
3724
primary_extension_slug: "geospatial"
3725
3725
name: "Search within radius"
3726
3726
difficulty: easy
3727
-
marketing_md: In this stage, you'll add support for searching locations near a coordinate within a given radius using the `GEOSEARCH` command.
3727
+
marketing_md: In this stage, you'll add support for searching locations near a coordinate within a given radius using the `GEOSEARCH` command.
0 commit comments