How should I process a full prefetch before sending a multiple ack? #143
Unanswered
thomasstep
asked this question in
Q&A
Replies: 1 comment
-
Yes, you can consume N messages the send the delivery tag of the Nth message with https://www.rabbitmq.com/confirms.html#consumer-acks-multiple-parameter https://github.com/rabbitmq/amqp091-go/blob/main/confirms.go#L89-L100 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The documentation says
Is this possible when using
Consume()
or do I need to useGet()
to take advantage of multiple-ack? I'm trying to reduce total network round trips and I have successfully used multiple-ack in the past to do this (but with a different language/library).Beta Was this translation helpful? Give feedback.
All reactions