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
According to benchmarks, transferring binary data is way faster than JavaScript objects.
Maybe we can use a mechanism like protocol buffer to serialise the data to binary, transmit them to another thread and then deserialise them to objects.
According to benchmarks, transferring binary data is way faster than JavaScript objects.
Maybe we can use a mechanism like protocol buffer to serialise the data to binary, transmit them to another thread and then deserialise them to objects.
There is an unofficial JavaScript port of protocol buffer: https://github.com/dcodeIO/ProtoBuf.js/
It may be overkilling for short messages, but if messages are ususally big, then it can make a change.
The text was updated successfully, but these errors were encountered: