Top "Bson" questions

BSON stands for "Binary JSON". It is a computer data interchange format used mainly as a data storage and network transfer format in the MongoDB database.

Date query with ISODate in mongodb doesn't seem to work

I don't seem to be able to get even the most basic date query to work in MongoDB. With a …

json mongodb bson isodate
How to query nested objects?

I have a problem when querying mongoDB with nested objects notation: db.messages.find( { headers : { From: "[email protected]" } } ).count() 0 …

mongodb syntax nested mongodb-query bson
Understanding MongoDB BSON Document size limit

From MongoDB The Definitive Guide: Documents larger than 4MB (when converted to BSON) cannot be saved to the database. This …

mongodb bson
Creating BSON object from JSON string

I have Java app that takes data from external app. Incoming JSONs are in Strings. I would like to parse …

java json mongodb bson
What is BSON and exactly how is it different from JSON?

I am just starting out with MongoDB and one of the things that I have noticed is that it uses …

json mongodb bson nosql
mongodb c# how to work with BSON document

I've spent MANY hours looking for the answer... This is very easy in PHP but I just can't put it …

c# mongodb bson
Performant Entity Serialization: BSON vs MessagePack (vs JSON)

Recently I've found MessagePack, an alternative binary serialization format to Google's Protocol Buffers and JSON which also outperforms both. Also …

serialization deserialization bson msgpack messagepack
Protocol Buffers versus JSON or BSON

Does anyone have any information on the performance characteristics of Protocol Buffers versus BSON (binary JSON) or versus JSON in …

c# json comparison protocol-buffers bson
MongoDB - What about Decimal type of value?

I am currently learning and applying MongoDB for a small financial related project. When I read MongoDB in Action, it …

mongodb decimal bigdecimal bson
How to convert BSON to JSON with human-readable date format

I would like to transform a BSON dump of MongoDB to JSON. To do that, I'm using the bsondump tool …

json mongodb date bson