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

A tour of the MongoDB source code

A tour of the MongoDB source code

A tour of the MongoDB source code

mongodb

June 29, 2011
Tweet

More Decks by mongodb

Other Decks in Programming

Transcript

  1. Next 30 minutes Overview of the MongoDB source code What

    you need to get started using it in your own project How the code is organized, so you can find what you're looking for quickly Any other questions?
  2. Different use cases • Building an app which uses mongodb

    ◦ probably just need mongo-[ X ]-driver • Extending core database for your own (nefarious?) purposes ◦ mongo package
  3. SCONS http://www.scons.org/ > install scons > cd ~/mongo > scons

    all (everything) > scons . (everything and unit tests) > scons install --prefix ? (install afterwards) > scons -dd . (debug symbols) > scons mongoclient.lib (C++ driver lib)