diff --git a/commands/xinfo-consumers.md b/commands/xinfo-consumers.md index ccbd8fe5f..855a308ce 100644 --- a/commands/xinfo-consumers.md +++ b/commands/xinfo-consumers.md @@ -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 diff --git a/commands/xinfo-stream.md b/commands/xinfo-stream.md index cf19fbc00..4fcbe1e2e 100644 --- a/commands/xinfo-stream.md +++ b/commands/xinfo-stream.md @@ -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 `` 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).