ares
ares

Reputation: 4413

JSON to BSON conversion is done on mongo client or mongod server?

In monogdb the JSON to BSON conversion during write operations and vice versa during read operations is done on MongoClient (shell or drivers) or the mongod server?

Upvotes: 0

Views: 101

Answers (1)

Puneet Singh
Puneet Singh

Reputation: 3543

The MongoDB clients(Shell and Driver) change the JSON to BSON or vice versa, Driver/Shell communicate with mongoDB in BSON format.

You can check below video by mongodb university explaining this.

https://www.youtube.com/watch?v=XCjpSq7H_G4

Upvotes: 1

Related Questions