Activity Forums Salesforce® Discussions What is BSON? and how it is different from Salesforce Json?

  • Anjali

    Member
    October 5, 2018 at 5:22 am

    Hi Chanchal,

    BSON is the binary encoding of JSON-like documents that MongoDB uses when storing documents in collections.

    BSON is designed to be efficient in space, but in some cases is not much more efficient than JSON. In some cases BSON uses even more space than JSON. The reason for this is another of the BSON design goals: traversability. BSON adds some "extra" information to documents, like length of strings and subobjects. This makes traversal faster.

    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 need to be parsed to and from text. This uses more space than JSON for small integers, but is much faster to parse.

Log In to reply.

Popular Salesforce Blogs

Popular Salesforce Videos