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
Our implementation of Reactive Streams shows a significant overhead in the SimpleSubscriber. It gets revealed when running the PostLongBytes performance simulation, where the subscriber has to create a new byte array and copy intermediate arrays into it:
Let's optimize the SimpleSubscriber to reduce this overhead.
The text was updated successfully, but these errors were encountered:
Our implementation of Reactive Streams shows a significant overhead in the
SimpleSubscriber
. It gets revealed when running thePostLongBytes
performance simulation, where the subscriber has to create a new byte array and copy intermediate arrays into it:Let's optimize the SimpleSubscriber to reduce this overhead.
The text was updated successfully, but these errors were encountered: