Contribute Media
A thank you to everyone who makes this possible: Read More

Everything You Know About MongoDB is Wrong!

Translations: en

Description

(Probably)

MongoDB is webscale, right? It's a JSON database, it's eventually consistent, and you use map-reduce to query it. Oh, and it's insecure.

Let me clear up some things: MongoDB is an ACID-compliant database with transactions, schemas & relationships. It includes a powerful aggregation query language; map-reduce has been deprecated for some time now. MongoDB doesn't speak or store JSON, and nowadays it comes with pretty good security defaults (we think).

There are many myths around about MongoDB - what it is, how it works, and what it does wrong. Like any database product, you need to know its capabilities and how to get the best out of it. On top of this, the product has changed _a lot_ over the years, but lots of information out there hasn't caught up.

I'll cover 8 myths around MongoDB, explain how they're wrong, why the myth originated in the first place (some of them weren't originally myths).

* What exactly _is_ MongoDB?
* What is the current release of MongoDB?
* MongoDB is _not_ a JSON database.
* MongoDB _has_ transactions.
* MongoDB allows relationships.
* You should only consider sharding if you _must_.
* MongoDB _is secure_.
* MongoDB stores your data reliably.
* MongoDB is a big product, with lots to learn.

Along the way, I'll explain some of MongoDB's best-kept secrets, and provide practical tips and tricks for using it. The audience will leave with a good idea of what MongoDB is, what it isn't, and how to best develop with it.
Improve this page