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
I have a large client-server software where the messages are encoded and decoded through bincode and may contain a bunch of strings, integers, floats, etc.
I recently tried to move to tokio which simplifies and fixes portability bugs (random os error 35 on macOS for example). To move the code I've used tokio-serde to support deserializing the packets serialize through bincode. Unfortunately, every-time a packet contains a bunch of strings tokio-serde errors with "frame size too big".
Is there any workaround to this bug?
The text was updated successfully, but these errors were encountered:
I have a large client-server software where the messages are encoded and decoded through
bincode
and may contain a bunch of strings, integers, floats, etc.I recently tried to move to
tokio
which simplifies and fixes portability bugs (random os error 35 on macOS for example). To move the code I've usedtokio-serde
to support deserializing the packets serialize throughbincode
. Unfortunately, every-time a packet contains a bunch of stringstokio-serde
errors with "frame size too big".Is there any workaround to this bug?
The text was updated successfully, but these errors were encountered: