6 ms·
When it comes to serialization or sending data over the wire (non http), I prefer relaxed json (no quotes on keys e.g. {a:1,b:"hi"} ). It keeps the message rea
by dazhbog 1y ago
When it comes to serialization or sending data over the wire (non http), I prefer relaxed json (no quotes on keys e.g. {a:1,b:"hi"} ).
It keeps the message readable and it can be re-assembled on the server. That is if MessagePack or CBOR are not an option.