BSON (Binary JSON) وہ binary format ہے جو MongoDB documents کو store کرنے کے لیے استعمال کرتا ہے — یہ JSON کو اضافی data types کے ساتھ extend کرتا ہے (جیسے dates، ObjectId، binary، اور صحیح number types) اور store اور traverse کرنے کے لیے efficient ہے۔ BSON types کو سمجھنا آپ کو ڈیٹا کو صحیح طریقے سے store کرنے میں مدد دیتا ہے۔
BSON — binary JSON with more types
JSON has limited types (string, number, boolean, null, object, array).
BSON adds: ObjectId, Date, Binary, Decimal128, distinct Int/Long/Double, Timestamp, etc.
→ BSON is more efficient (binary, typed, traversable) and richer than plain JSON text.
