Skip to content

Commit 8b81763

Browse files
Update intro.md
1 parent 8536a6a commit 8b81763

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/uc/intro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
**Redis** is a powerful in-memory data structure store that can be used for various use cases due to its speed, simplicity, and versatility. In this tutorial, we'll explore several common use cases: matchmaking, job queue, leaderboard, and session store.
22

3-
If you haven't done so already, you can upload the sample data related to this tutorial by clicking the button below. You will also need support for [JSON](https://redis.io/docs/latest/develop/data-types/json/) and [Search & query](https://redis.io/docs/latest/develop/interact/search-and-query/) in your database to take advantage of this tutorial fully.
3+
If you haven't done so already, you can upload the sample data related to this tutorial by clicking the button below. You will also need support for [JSON](https://redis.io/docs/latest/develop/data-types/json/?utm_source=redisinsight&utm_medium=app&utm_campaign=RAG_tutorial) and [Search & query](https://redis.io/docs/latest/develop/interact/search-and-query/?utm_source=redisinsight&utm_medium=app&utm_campaign=RAG_tutorial) in your database to take advantage of this tutorial fully.
44

55
```redis:[run_confirmation=true] Upload Sample Data
66
@@ -291,7 +291,7 @@ RPOP sample_jobQueue:waitingList
291291

292292
### Leaderboard
293293

294-
[Leaderboards](https://redis.io/solutions/leaderboards/) are crucial for gaming applications to display rankings based on scores. Sorted Sets in Redis are perfect for this purpose due to their ability to store elements with associated scores, which can be easily queried and sorted.
294+
[Leaderboards](https://redis.io/solutions/leaderboards/?utm_source=redisinsight&utm_medium=app&utm_campaign=RAG_tutorial) are crucial for gaming applications to display rankings based on scores. Sorted Sets in Redis are perfect for this purpose due to their ability to store elements with associated scores, which can be easily queried and sorted.
295295

296296
```redis:[run_confirmation=true] Create a leaderboard score
297297
// Add a new score to leaderboard

0 commit comments

Comments
 (0)