Upgrade to Pro — share decks privately, control downloads, hide ads and more …

A Timeline of MongoDB

A Timeline of MongoDB

In this presentation we go on a journey through the history of how MongoDB got introduced in our organization and have a look at what the future will bring.

Nils De Moor

March 18, 2014
Tweet

More Decks by Nils De Moor

Other Decks in Programming

Transcript

  1. Text 3 Text2 Text1 Hi! I’m Nils De Moor, CTO

    & cofounder at WooRank. This is our dream team. That’s me!
  2. “What’s the avg number of visits on UK websites?” “What’s

    the most used javascript framework?” “How many websites mention the word ‘car’?” “How many websites are optimized for mobile?”
  3. “What’s the avg number of visits on UK websites?” “What’s

    the most used javascript framework?” “How many websites mention the word ‘car’?” “How many websites are optimized for mobile?” ? ? ? ? ? ? ? ?
  4. { _id: 1, user: “john”, status: “A”, name: { first:

    “John”, last”: “Doe” } } db.users.ensureIndex( { status: 1, user: 1 } )
  5. { _id: 1, user: “john”, status: “A”, name: { first:

    “John”, last”: “Doe” } } db.users.ensureIndex( { status: 1, user: 1 } ) db.users.ensureIndex( { name: 1 } ) db.users.ensureIndex( { “name.first”: 1 } )