Use binary encoding instead of JSON Why should I care?
In memory, data is stored as data structures such as objects, lists, arrays, etc. But when you want to send data over a network or store it in a file, you have to encode it as a separate sequence of bytes. The translation from the in-memory representation to a sequence of bytes is called encoding, and the inverse is called decoding. Over time, best binary software...