I understand I can get the total length of a stream with xlen
or xinfo stream mystream full.
I also understand that I can use xpending
to get the length of the pending queue, items that have not been ack'd.
Is there a command to give me the count or identity of items that /have/ been ack
'd? (Besides assuming that xlen
- len(xpending)
= len(unackd)
?)