Oops! Something went wrong, please try again later.
BSON, short for Binary JSON, is a binary-encoded serialization of JSON-like documents. Like JSON, BSON supports the embedding of documents and …
Frequently asked questions
Q:
What is the point of BSON when it is no smaller than JSON in some cases?
A:
BSON is also designed to be fast to encode and decode. For example, integers are stored as 32 (or 64) bit integers, so they don't...