I'm just learning MongoDB, but I'm a bit puzzled by the data format adopted by MongoDB. Therefore, I understand that by definition:
"MongoDB does not actually use JSON to store data; rather, it uses the open data format developed by the MongoDB team called BSON"
This is clear, however, I just found out that you can really import a JSON document into mongodb. Is it right to tell you that you can use the JSON format to insert data into MongoDB, but the data is natively built into BSON for performance reasons? Hope someone can shed some light on him.
source
share