-
Notifications
You must be signed in to change notification settings - Fork 240
Description
Page https://redis.io/docs/latest/commands/xclaim
The segment of the docs that says:
RETRYCOUNT : Set the retry counter to the specified value. This counter is incremented every time a message is delivered again. Normally XCLAIM does not alter this counter, which is just served to clients when the XPENDING command is called: this way clients can detect anomalies, like messages that are never processed for some reason after a big number of delivery attempts.
This is kind of misleading. Especially the part "XCLAIM does not alter this counter", as XCLAIM most certainly do change the retry counter, but it only increments it. I suggest making it shorter and more precise something like:
RETRYCOUNT : Set the retry counter to the specified value. If not set XCLAIM will increment the retry counter every time a message is delivered again.