Is Base64 Encoded BSON smaller then BSON?
feedback
|
|
Piskvor's right, base64-encoded-anything is longer than raw. You base64-encode something to get it down a channel with a limited character repertoire, not as a means of reducing size. Perhaps the question should be: Is Base64-encoded BSON smaller then JSON? If so then JSON-vs-BSON is very much dependent on the content. For example arbitrary floating point numbers like For string values, BSON loses 4 bytes for a length word, but gets some back for every IMO: BSON does not have a big compactness advantage over JSON in general. Its strength lies more in simplicity of decoding in a low-level language, plus datatypes JavaScript doesn't have. It can have marginal advantages for binary strings and a few other cases; it's certainly worth checking for a particular workload. But it's telling that the examples in the BSON specification itself are considerably smaller in JSON. As for base64-encoded BSON: the same, except 33% worse. | |||
feedback
|
|
No: with base64, 3 bytes of plaintext become 4 bytes of encoded text, therefore the result will always be larger, no matter what the data payload is. See also: http://en.wikipedia.org/wiki/Base64 | |||
|
feedback
|
|
just wrote this as my soolution to shortify bson please check, it can help you:
TEST
| |||
|
feedback
|