From 505e99a698eb888aff768155b49825de92b3ecca Mon Sep 17 00:00:00 2001 From: shivanisinghnitp <58537821+shivanisinghnitp@users.noreply.github.com> Date: Mon, 22 May 2023 10:29:18 +0530 Subject: [PATCH] Update tutorials/pub-sub/README.md Co-authored-by: Mark Fussell Signed-off-by: shivanisinghnitp <58537821+shivanisinghnitp@users.noreply.github.com> --- tutorials/pub-sub/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/pub-sub/README.md b/tutorials/pub-sub/README.md index 2c72bc3b..e190ff4c 100644 --- a/tutorials/pub-sub/README.md +++ b/tutorials/pub-sub/README.md @@ -366,7 +366,7 @@ XLEN orders -3. To show the details of each order in the redis stream events, we use the `XRANGE` command. We specify two IDs, start and end. The range returned will include the elements having start or end as ID. The two special IDs - and + respectively mean the smallest and the greatest ID possible. We add an optional `COUNT` option at the end to get the first N items only. Below command shows the first 2 events. +3. To show the details of each order in the Redis stream events, use the `XRANGE` command. Specify two IDs, start and end. The range returned includes the elements having `start` or `end` as ID. The two special IDs - and + respectively mean the smallest and the greatest ID possible. Add an optional `COUNT` option at the end to get the first N items only. For example, the command shows the first 2 events.