What is BSON?

devquora
devquora

Posted On: Feb 22, 2018

 

    1 Answer Written

  •  devquora
    Answered by Prachi

    BSON defines a computer data interchange format as it is a combination of JSON and its binary version. It also refers to a binary representative form for simple or complex data structures also including the corresponding arrays. It is designed to provide efficiency in storage speed as well as scan speeding. Large elements of its documents are prefixed with a defined length field to facilitate the scanning.

Related Questions

Please Login or Register to leave a response.

Related Questions

JSON Interview Questions

What is JSON? For what is used for?

JSON (JavaScript Object Notation) is a data storage and communication format based on key-value pair of JavaScript obje..

JSON Interview Questions

How to convert Javascript objects into JSON?

JSON.stringify(value); is used to convert Javascript objects into JSON.Example Usage: var obj={"website":"Onlineint..

JSON Interview Questions

List types Natively supported by JSON?

JSON supports Objects, Arrays, Primitives (strings, numbers, boolean values (true/false), null) data types...