From 9eb0c20d0173000145667e3b1b9d69dcdba5d409 Mon Sep 17 00:00:00 2001 From: Paul Kuruvilla Date: Mon, 18 Sep 2023 21:23:15 +0100 Subject: [PATCH] Update course-definition.yml with extension changes --- course-definition.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/course-definition.yml b/course-definition.yml index 6ba50f3b..6e516c96 100644 --- a/course-definition.yml +++ b/course-definition.yml @@ -52,28 +52,28 @@ marketing: I think the instant feedback right there in the git push is really cool. Didn't even know that was possible! -extensions: - - slug: "persistence" - name: "Persistence" - description_markdown: | - In this challenge extension you'll add [persistence][redis-persistence] support to your Redis implementation. +# extensions: +# - slug: "persistence" +# name: "Persistence" +# description_markdown: | +# In this challenge extension you'll add [persistence][redis-persistence] support to your Redis implementation. - Along the way you'll learn about Redis's [RDB file format][rdb-file-format], the [SAVE][save-command] command, and more. +# Along the way you'll learn about Redis's [RDB file format][rdb-file-format], the [SAVE][save-command] command, and more. - [redis-persistence]: https://redis.io/docs/manual/persistence/ - [rdb-file-format]: https://github.com/sripathikrishnan/redis-rdb-tools/blob/548b11ec3c81a603f5b321228d07a61a0b940159/docs/RDB_File_Format.textile - [save-command]: https://redis.io/commands/save/ +# [redis-persistence]: https://redis.io/docs/manual/persistence/ +# [rdb-file-format]: https://github.com/sripathikrishnan/redis-rdb-tools/blob/548b11ec3c81a603f5b321228d07a61a0b940159/docs/RDB_File_Format.textile +# [save-command]: https://redis.io/commands/save/ - - slug: "streams" - name: "Streams" - description_markdown: | - In this challenge extension you'll add support for the [Stream][redis-streams-data-type] data type to your Redis implementation. +# - slug: "streams" +# name: "Streams" +# description_markdown: | +# In this challenge extension you'll add support for the [Stream][redis-streams-data-type] data type to your Redis implementation. - Along the way you'll learn about commands like [XADD][xadd-command], [XRANGE][xrange-command] and more. +# Along the way you'll learn about commands like [XADD][xadd-command], [XRANGE][xrange-command] and more. - [redis-streams-data-type]: https://redis.io/docs/data-types/streams/ - [xadd-command]: https://redis.io/commands/xadd/ - [xrange-command]: https://redis.io/commands/xrange/ +# [redis-streams-data-type]: https://redis.io/docs/data-types/streams/ +# [xadd-command]: https://redis.io/commands/xadd/ +# [xrange-command]: https://redis.io/commands/xrange/ stages: - slug: "init"