Skip to content

Commit

Permalink
Comma after introductory phrase
Browse files Browse the repository at this point in the history
  • Loading branch information
zuiderkwast committed Mar 8, 2024
1 parent 14b36e0 commit 92fccab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions commands/xinfo-consumers.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ The following information is provided for each consumer in the group:
* **idle**: the number of milliseconds that have passed since the consumer's last attempted interaction (Examples: `XREADGROUP`, `XCLAIM`, `XAUTOCLAIM`)
* **inactive**: the number of milliseconds that have passed since the consumer's last successful interaction (Examples: `XREADGROUP` that actually read some entries into the PEL, `XCLAIM`/`XAUTOCLAIM` that actually claimed some entries)

Note that before Redis 7.2.0 **idle** used to denote the time passed since last successful interaction.
In 7.2.0 **inactive** was added and **idle** was changed to denote the time passed since last attempted interaction.
Note that before Redis 7.2.0, **idle** used to denote the time passed since last successful interaction.
In 7.2.0, **inactive** was added and **idle** was changed to denote the time passed since last attempted interaction.

@examples

Expand Down
4 changes: 2 additions & 2 deletions commands/xinfo-stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ The following information is provided for each consumer:
* **pel-count**: the number of entries in the PEL: pending messages for the consumer, which are messages that were delivered but are yet to be acknowledged
* **pending**: an array with pending entries information, has the same structure as described above, except the consumer name is omitted (redundant, since anyway we are in a specific consumer context)

Note that before Redis 7.2.0 **seen-time** used to denote the last successful interaction.
In 7.2.0 **active-time** was added and **seen-time** was changed to denote the last attempted interaction.
Note that before Redis 7.2.0, **seen-time** used to denote the last successful interaction.
In 7.2.0, **active-time** was added and **seen-time** was changed to denote the last attempted interaction.

The `COUNT` option can be used to limit the number of stream and PEL entries that are returned (The first `<count>` entries are returned).
The default `COUNT` is 10 and a `COUNT` of 0 means that all entries will be returned (execution time may be long if the stream has a lot of entries).
Expand Down

0 comments on commit 92fccab

Please sign in to comment.