BSON (Binary JSON) وہ binary format ہے جو MongoDB documents کو store کرنے کے لیے استعمال کرتا ہے — یہ JSON کو اضافی data types کے ساتھ extend کرتا ہے (جیسے dates، ObjectId، binary، اور صحیح number types) اور یہ store اور traverse کرنے میں موثر ہے۔ BSON types کو سمجھنا آپ کو data کو صحیح طریقے سے store کرنے میں مدد دیتا ہے۔
BSON — binary JSON مزید 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.
