You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This retry pulls data from the network, it's not consistent with NIO and impedes performances. First thing is to reliably reproduce it (with big messages, small ByteBuffer size, or using the broker across the network). Fixing it could imply that some frames aren't complete, making the NIO loop slightly more complicated.
The text was updated successfully, but these errors were encountered:
A FrameBuilder class has been introduced to be able to read a frame
in several network reads. The frame builder keeps track of
the partial frame state. This avoids pulling from the network
when the channel doesn't come back with any value from a network
read, which is against the NIO philosophy.
References #319
Uh oh!
There was an error while loading. Please reload this page.
See https://groups.google.com/d/msg/rabbitmq-users/9J5wTtrS4q8/zgwOdfTIAwAJ.
This retry pulls data from the network, it's not consistent with NIO and impedes performances. First thing is to reliably reproduce it (with big messages, small
ByteBuffer
size, or using the broker across the network). Fixing it could imply that some frames aren't complete, making the NIO loop slightly more complicated.The text was updated successfully, but these errors were encountered: