SlideShare a Scribd company logo
open-source, high-performance,
schema-free, document-oriented
           database
RDBMS

• Great for many applications
• Shortcomings
 • Scalability
 • Flexibility
CAP Theorem

• Consistency
• Availability
• Tolerance to network Partitions
• Pick two

       http://www.cs.berkeley.edu/~brewer/cs262b-2004/PODC-keynote.pdf
ACID vs BASE

•   Atomicity
                  •   Basically Available
•   Consistency
                  •   Soft state
•   Isolation
                  •   Eventually consistent
•   Durability
Schema-free

• Loosening constraints - added flexibility
• Dynamically typed languages
• Migrations
BigTable

• Single master node
• Row / Column hybrid
• Versioned
BigTable

• Open-source clones:
 • HBase
 • Hypertable
Dynamo
• Simple Key/Value store
• No master node
 • Write to any (many) nodes
 • Read from one or more nodes (balance
    speed vs. consistency)
• Read repair
Dynamo

• Open-source clones
 • Project Voldemort
 • Cassandra - data model more like
    BigTable
 • Dynomite
memcached

• Used as a caching layer
• Essentially a key/value store
• RAM only - fast
• Does away with ACID
Redis

• Like memcached
• Different
 • Values can be strings, lists, sets
 • Non-volatile
Tokyo Cabinet + Tyrant

• Key/value store with focus on speed
• Some more advanced queries
 • Sorting, range or prefix matching
• Multiple storage engines
 • Hash, B-Tree, Fixed length and Table
• A lot in common with MongoDB:
 • Document-oriented
 • Schema-free
 • JSON-style documents
• Differences
 • MVCC based
 • Replication as path to scalability
 • Query through predefined views
 • ACID
 • REST
• Focus on performance
• Rich dynamic queries
• Secondary indexes
• Replication / failover
• Auto-sharding
• Many platforms / languages supported
MongoDB EuroPython 2009
Good at

• The web
• Caching
• High volume / low value
• Scalability
Less good at

• Highly transactional
• Ad-hoc business intelligence
• Problems that require SQL
PyMongo

• Python driver for MongoDB
• Pure Python, with optional C extension
• Installation (setuptools):
         easy_install pymongo
Document
• Unit of storage (think row)
• Just a dictionary
• Can store many Python types:
 • None, bool, int, float, string / unicode,
    dict, datetime.datetime, compiled re
• Some special types:
 • SON, Binary, ObjectId, DBRef
Collection

• Schema-free equivalent of a table
• Logical groups of documents
• Indexes are per-collection
_id

• Special key
• Present in all documents
• Unique across a Collection
• Any type you want
Blog back-end
Post

{“author”: “mike”,
 “date”: datetime.datetime.utcnow(),
 “text”: “my blog post...”,
 “tags”: [“mongodb”, “python”]}
Comment


{“author”: “eliot”,
 “date”: datetime.datetime.utcnow(),
 “text”: “great post!”}
New post

post = {“author”: “mike”,
        “date”: datetime.datetime.utcnow(),
        “text”: “my blog post...”,
        “tags”: [“mongodb”, “python”]}

post_id = db.posts.save(post)
Embedding a comment

c = {“author”: “eliot”,
     “date”: datetime.datetime.utcnow(),
     “text”: “great post!”}

db.posts.update({“_id”: post_id},
                {“$push”: {“comments”: c}})
Last 10 posts

query = db.posts.find()
          .sort(“date”, DESCENDING)
          .limit(10)

for post in query:
    print post[“text”]
Posts by author


db.posts.find({“author”: “mike”})
Posts in the last week

last_week = datetime.datetime.utcnow() +
            datetime.timedelta(days=-7)

db.posts.find({“date”: {“$gt”: last_week}})
Posts ending with
            ‘Python’


db.posts.find({“text”: re.compile(“Python$”)})
Posts with a tag
  db.posts.find({“tag”: “mongodb”})




            ... and fast
db.posts.create_index(“tag”, ASCENDING)
Counting posts


db.posts.count()

db.posts.find({“author”: “mike”}).count()
Basic paging

page = 2
page_size = 15

db.posts.find().limit(page_size)
               .skip(page * page_size)
Migration: adding titles
  • Easy - just start adding them:
post = {“author”: “mike”,
        “date”: datetime.datetime.utcnow(),
        “text”: “another blog post...”,
        “tags”: [“meetup”, “python”],
        “title”: “Document Oriented Dbs”}

post_id = db.posts.save(post)
Advanced queries

    • $gt, $lt, $gte, $lte, $ne, $all, $in, $nin
    • where()
db.posts.find().where(“this.author == ‘mike’”)

    • group()
Other cool stuff

• Capped collections
• Unique indexes
• Mongo shell
• GridFS
• MongoKit (on pypi)
• Download MongoDB
  http://www.mongodb.org

• Install PyMongo
• Try it out!
• http://www.mongodb.org
• irc.freenode.net#mongodb
• mongodb-user on google groups
• @mongodb, @mdirolf
• mike@10gen.com
• http://www.slideshare.net/mdirolf
Ad

More Related Content

What's hot (20)

MongoDB
MongoDBMongoDB
MongoDB
Konstantin Chukhlomin
 
MongoDB
MongoDBMongoDB
MongoDB
Rony Gregory
 
TechTalk #14 Grokking: Couchbase - NoSQL + Memcached + Real-time + Offline!
TechTalk #14 Grokking:  Couchbase - NoSQL + Memcached + Real-time + Offline!TechTalk #14 Grokking:  Couchbase - NoSQL + Memcached + Real-time + Offline!
TechTalk #14 Grokking: Couchbase - NoSQL + Memcached + Real-time + Offline!
Grokking VN
 
Living with SQL and NoSQL at craigslist, a Pragmatic Approach
Living with SQL and NoSQL at craigslist, a Pragmatic ApproachLiving with SQL and NoSQL at craigslist, a Pragmatic Approach
Living with SQL and NoSQL at craigslist, a Pragmatic Approach
Jeremy Zawodny
 
Intro To Mongo Db
Intro To Mongo DbIntro To Mongo Db
Intro To Mongo Db
chriskite
 
Dev Jumpstart: Build Your First App with MongoDB
Dev Jumpstart: Build Your First App with MongoDBDev Jumpstart: Build Your First App with MongoDB
Dev Jumpstart: Build Your First App with MongoDB
MongoDB
 
Introduction to MongoDB (from Austin Code Camp)
Introduction to MongoDB (from Austin Code Camp)Introduction to MongoDB (from Austin Code Camp)
Introduction to MongoDB (from Austin Code Camp)
Chris Edwards
 
MongoDB - Getting Started
MongoDB  - Getting StartedMongoDB  - Getting Started
MongoDB - Getting Started
Ahmed Helmy
 
mongodb-brief-intro-february-2012
mongodb-brief-intro-february-2012mongodb-brief-intro-february-2012
mongodb-brief-intro-february-2012
Chris Westin
 
Sphinx at Craigslist in 2012
Sphinx at Craigslist in 2012Sphinx at Craigslist in 2012
Sphinx at Craigslist in 2012
Jeremy Zawodny
 
Why MongoDB over other Databases - Habilelabs
Why MongoDB over other Databases - HabilelabsWhy MongoDB over other Databases - Habilelabs
Why MongoDB over other Databases - Habilelabs
HabileLabs
 
Webinar: Building Your First MongoDB App
Webinar: Building Your First MongoDB AppWebinar: Building Your First MongoDB App
Webinar: Building Your First MongoDB App
MongoDB
 
Azure Storage Services - Part 01
Azure Storage Services - Part 01Azure Storage Services - Part 01
Azure Storage Services - Part 01
Neeraj Kumar
 
CouchDB: replicated data store for distributed proxy server
CouchDB: replicated data store for distributed proxy serverCouchDB: replicated data store for distributed proxy server
CouchDB: replicated data store for distributed proxy server
tkramar
 
Introduction to mongoDB
Introduction to mongoDBIntroduction to mongoDB
Introduction to mongoDB
Cuelogic Technologies Pvt. Ltd.
 
MongoDB, E-commerce and Transactions
MongoDB, E-commerce and TransactionsMongoDB, E-commerce and Transactions
MongoDB, E-commerce and Transactions
Steven Francia
 
Migrating from MongoDB to Neo4j - Lessons Learned
Migrating from MongoDB to Neo4j - Lessons LearnedMigrating from MongoDB to Neo4j - Lessons Learned
Migrating from MongoDB to Neo4j - Lessons Learned
Nick Manning
 
NYT Web Archive
NYT Web ArchiveNYT Web Archive
NYT Web Archive
Justin Heideman
 
MongoDB basics & Introduction
MongoDB basics & IntroductionMongoDB basics & Introduction
MongoDB basics & Introduction
Jerwin Roy
 
Grails
GrailsGrails
Grails
Gabriel Dogaru
 
TechTalk #14 Grokking: Couchbase - NoSQL + Memcached + Real-time + Offline!
TechTalk #14 Grokking:  Couchbase - NoSQL + Memcached + Real-time + Offline!TechTalk #14 Grokking:  Couchbase - NoSQL + Memcached + Real-time + Offline!
TechTalk #14 Grokking: Couchbase - NoSQL + Memcached + Real-time + Offline!
Grokking VN
 
Living with SQL and NoSQL at craigslist, a Pragmatic Approach
Living with SQL and NoSQL at craigslist, a Pragmatic ApproachLiving with SQL and NoSQL at craigslist, a Pragmatic Approach
Living with SQL and NoSQL at craigslist, a Pragmatic Approach
Jeremy Zawodny
 
Intro To Mongo Db
Intro To Mongo DbIntro To Mongo Db
Intro To Mongo Db
chriskite
 
Dev Jumpstart: Build Your First App with MongoDB
Dev Jumpstart: Build Your First App with MongoDBDev Jumpstart: Build Your First App with MongoDB
Dev Jumpstart: Build Your First App with MongoDB
MongoDB
 
Introduction to MongoDB (from Austin Code Camp)
Introduction to MongoDB (from Austin Code Camp)Introduction to MongoDB (from Austin Code Camp)
Introduction to MongoDB (from Austin Code Camp)
Chris Edwards
 
MongoDB - Getting Started
MongoDB  - Getting StartedMongoDB  - Getting Started
MongoDB - Getting Started
Ahmed Helmy
 
mongodb-brief-intro-february-2012
mongodb-brief-intro-february-2012mongodb-brief-intro-february-2012
mongodb-brief-intro-february-2012
Chris Westin
 
Sphinx at Craigslist in 2012
Sphinx at Craigslist in 2012Sphinx at Craigslist in 2012
Sphinx at Craigslist in 2012
Jeremy Zawodny
 
Why MongoDB over other Databases - Habilelabs
Why MongoDB over other Databases - HabilelabsWhy MongoDB over other Databases - Habilelabs
Why MongoDB over other Databases - Habilelabs
HabileLabs
 
Webinar: Building Your First MongoDB App
Webinar: Building Your First MongoDB AppWebinar: Building Your First MongoDB App
Webinar: Building Your First MongoDB App
MongoDB
 
Azure Storage Services - Part 01
Azure Storage Services - Part 01Azure Storage Services - Part 01
Azure Storage Services - Part 01
Neeraj Kumar
 
CouchDB: replicated data store for distributed proxy server
CouchDB: replicated data store for distributed proxy serverCouchDB: replicated data store for distributed proxy server
CouchDB: replicated data store for distributed proxy server
tkramar
 
MongoDB, E-commerce and Transactions
MongoDB, E-commerce and TransactionsMongoDB, E-commerce and Transactions
MongoDB, E-commerce and Transactions
Steven Francia
 
Migrating from MongoDB to Neo4j - Lessons Learned
Migrating from MongoDB to Neo4j - Lessons LearnedMigrating from MongoDB to Neo4j - Lessons Learned
Migrating from MongoDB to Neo4j - Lessons Learned
Nick Manning
 
MongoDB basics & Introduction
MongoDB basics & IntroductionMongoDB basics & Introduction
MongoDB basics & Introduction
Jerwin Roy
 

Viewers also liked (19)

Transfer Printable fabrics Silhouette Cameo 2
Transfer Printable fabrics Silhouette Cameo 2Transfer Printable fabrics Silhouette Cameo 2
Transfer Printable fabrics Silhouette Cameo 2
Silhouette Cameo 2 Europe
 
ไอโซเมอร์
ไอโซเมอร์ไอโซเมอร์
ไอโซเมอร์
Maruko Supertinger
 
Mathematics(ME)(Khagendradewangan.blogspot.in)
Mathematics(ME)(Khagendradewangan.blogspot.in)Mathematics(ME)(Khagendradewangan.blogspot.in)
Mathematics(ME)(Khagendradewangan.blogspot.in)
KHAGENDRA KUMAR DEWANGAN
 
Fb alopecia in a bulldog
Fb alopecia in a bulldogFb alopecia in a bulldog
Fb alopecia in a bulldog
Centro de Dermatología Veterinaria ADERVET
 
RECTAS PARALELAS Y PERPENDICULARES
RECTAS PARALELAS Y PERPENDICULARESRECTAS PARALELAS Y PERPENDICULARES
RECTAS PARALELAS Y PERPENDICULARES
Maria Gabriela Bertozzi Gonzalez
 
final resume
final resumefinal resume
final resume
Tejas Pawar
 
NOSQL - not only sql
NOSQL - not only sqlNOSQL - not only sql
NOSQL - not only sql
Sergey Shishkin
 
Final report Traditional customs of four seasons_TeodorBalanSchool
Final report Traditional customs of four seasons_TeodorBalanSchoolFinal report Traditional customs of four seasons_TeodorBalanSchool
Final report Traditional customs of four seasons_TeodorBalanSchool
Liliana Gheorghian
 
Articulo del 42 al 52
Articulo del 42 al 52Articulo del 42 al 52
Articulo del 42 al 52
PAulo Borikua
 
Vittorio Tedeschi aponta motivos para Dicaprio ainda não ter conquistado o Oscar
Vittorio Tedeschi aponta motivos para Dicaprio ainda não ter conquistado o OscarVittorio Tedeschi aponta motivos para Dicaprio ainda não ter conquistado o Oscar
Vittorio Tedeschi aponta motivos para Dicaprio ainda não ter conquistado o Oscar
VittorioTedeschi
 
Function oveloading
Function oveloadingFunction oveloading
Function oveloading
Ritika Sharma
 
Workshop 1 susy wootton
Workshop 1 susy woottonWorkshop 1 susy wootton
Workshop 1 susy wootton
Policy Lab
 
DevOps Boston - Heartbleed at Acquia
DevOps Boston - Heartbleed at AcquiaDevOps Boston - Heartbleed at Acquia
DevOps Boston - Heartbleed at Acquia
Marc Seeger
 
หลักสูตร Sqs ผจก
หลักสูตร Sqs ผจกหลักสูตร Sqs ผจก
หลักสูตร Sqs ผจก
Nutthawuth Kanasup
 
Vancouver Rebels of Recruiting Roadshow | Ami Price from ATB Financial
Vancouver Rebels of Recruiting Roadshow | Ami Price from ATB FinancialVancouver Rebels of Recruiting Roadshow | Ami Price from ATB Financial
Vancouver Rebels of Recruiting Roadshow | Ami Price from ATB Financial
Glassdoor
 
PLUG VLAVE - PIN-Layout1
PLUG VLAVE - PIN-Layout1PLUG VLAVE - PIN-Layout1
PLUG VLAVE - PIN-Layout1
Kristopher Thorpe
 
รูปพื้นที่ผิว
รูปพื้นที่ผิวรูปพื้นที่ผิว
รูปพื้นที่ผิว
Krueed Huaybong
 
2 c0187 mc evaluacion
2 c0187 mc evaluacion2 c0187 mc evaluacion
2 c0187 mc evaluacion
Unfv Fiis
 
CAP and BASE
CAP and BASECAP and BASE
CAP and BASE
Dinesh Varadharajan
 
Mathematics(ME)(Khagendradewangan.blogspot.in)
Mathematics(ME)(Khagendradewangan.blogspot.in)Mathematics(ME)(Khagendradewangan.blogspot.in)
Mathematics(ME)(Khagendradewangan.blogspot.in)
KHAGENDRA KUMAR DEWANGAN
 
Final report Traditional customs of four seasons_TeodorBalanSchool
Final report Traditional customs of four seasons_TeodorBalanSchoolFinal report Traditional customs of four seasons_TeodorBalanSchool
Final report Traditional customs of four seasons_TeodorBalanSchool
Liliana Gheorghian
 
Articulo del 42 al 52
Articulo del 42 al 52Articulo del 42 al 52
Articulo del 42 al 52
PAulo Borikua
 
Vittorio Tedeschi aponta motivos para Dicaprio ainda não ter conquistado o Oscar
Vittorio Tedeschi aponta motivos para Dicaprio ainda não ter conquistado o OscarVittorio Tedeschi aponta motivos para Dicaprio ainda não ter conquistado o Oscar
Vittorio Tedeschi aponta motivos para Dicaprio ainda não ter conquistado o Oscar
VittorioTedeschi
 
Workshop 1 susy wootton
Workshop 1 susy woottonWorkshop 1 susy wootton
Workshop 1 susy wootton
Policy Lab
 
DevOps Boston - Heartbleed at Acquia
DevOps Boston - Heartbleed at AcquiaDevOps Boston - Heartbleed at Acquia
DevOps Boston - Heartbleed at Acquia
Marc Seeger
 
หลักสูตร Sqs ผจก
หลักสูตร Sqs ผจกหลักสูตร Sqs ผจก
หลักสูตร Sqs ผจก
Nutthawuth Kanasup
 
Vancouver Rebels of Recruiting Roadshow | Ami Price from ATB Financial
Vancouver Rebels of Recruiting Roadshow | Ami Price from ATB FinancialVancouver Rebels of Recruiting Roadshow | Ami Price from ATB Financial
Vancouver Rebels of Recruiting Roadshow | Ami Price from ATB Financial
Glassdoor
 
รูปพื้นที่ผิว
รูปพื้นที่ผิวรูปพื้นที่ผิว
รูปพื้นที่ผิว
Krueed Huaybong
 
2 c0187 mc evaluacion
2 c0187 mc evaluacion2 c0187 mc evaluacion
2 c0187 mc evaluacion
Unfv Fiis
 
Ad

Similar to MongoDB EuroPython 2009 (20)

MongoDB NYC Python
MongoDB NYC PythonMongoDB NYC Python
MongoDB NYC Python
Mike Dirolf
 
MongoDB at RubyEnRails 2009
MongoDB at RubyEnRails 2009MongoDB at RubyEnRails 2009
MongoDB at RubyEnRails 2009
Mike Dirolf
 
Mongo db eveningschemadesign
Mongo db eveningschemadesignMongo db eveningschemadesign
Mongo db eveningschemadesign
MongoDB APAC
 
MongoDB: a gentle, friendly overview
MongoDB: a gentle, friendly overviewMongoDB: a gentle, friendly overview
MongoDB: a gentle, friendly overview
Antonio Pintus
 
MongoDB at ZPUGDC
MongoDB at ZPUGDCMongoDB at ZPUGDC
MongoDB at ZPUGDC
Mike Dirolf
 
MongoDB SF Ruby
MongoDB SF RubyMongoDB SF Ruby
MongoDB SF Ruby
Mike Dirolf
 
MongoDB Introduction talk at Dr Dobbs Conference, MongoDB Evenings at Bangalo...
MongoDB Introduction talk at Dr Dobbs Conference, MongoDB Evenings at Bangalo...MongoDB Introduction talk at Dr Dobbs Conference, MongoDB Evenings at Bangalo...
MongoDB Introduction talk at Dr Dobbs Conference, MongoDB Evenings at Bangalo...
Prasoon Kumar
 
Mongodb intro
Mongodb introMongodb intro
Mongodb intro
christkv
 
Building your first app with MongoDB
Building your first app with MongoDBBuilding your first app with MongoDB
Building your first app with MongoDB
Norberto Leite
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
Mike Dirolf
 
10gen MongoDB Video Presentation at WebGeek DevCup
10gen MongoDB Video Presentation at WebGeek DevCup10gen MongoDB Video Presentation at WebGeek DevCup
10gen MongoDB Video Presentation at WebGeek DevCup
WebGeek Philippines
 
Managing Social Content with MongoDB
Managing Social Content with MongoDBManaging Social Content with MongoDB
Managing Social Content with MongoDB
MongoDB
 
Dev Jumpstart: Build Your First App with MongoDB
Dev Jumpstart: Build Your First App with MongoDBDev Jumpstart: Build Your First App with MongoDB
Dev Jumpstart: Build Your First App with MongoDB
MongoDB
 
KeyValue Stores
KeyValue StoresKeyValue Stores
KeyValue Stores
Mauro Pompilio
 
Using Spring with NoSQL databases (SpringOne China 2012)
Using Spring with NoSQL databases (SpringOne China 2012)Using Spring with NoSQL databases (SpringOne China 2012)
Using Spring with NoSQL databases (SpringOne China 2012)
Chris Richardson
 
Drop acid
Drop acidDrop acid
Drop acid
Mike Feltman
 
Building your first app with mongo db
Building your first app with mongo dbBuilding your first app with mongo db
Building your first app with mongo db
MongoDB
 
MongoDB
MongoDBMongoDB
MongoDB
Steven Francia
 
MongoDB and Ruby on Rails
MongoDB and Ruby on RailsMongoDB and Ruby on Rails
MongoDB and Ruby on Rails
rfischer20
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
Sean Laurent
 
MongoDB NYC Python
MongoDB NYC PythonMongoDB NYC Python
MongoDB NYC Python
Mike Dirolf
 
MongoDB at RubyEnRails 2009
MongoDB at RubyEnRails 2009MongoDB at RubyEnRails 2009
MongoDB at RubyEnRails 2009
Mike Dirolf
 
Mongo db eveningschemadesign
Mongo db eveningschemadesignMongo db eveningschemadesign
Mongo db eveningschemadesign
MongoDB APAC
 
MongoDB: a gentle, friendly overview
MongoDB: a gentle, friendly overviewMongoDB: a gentle, friendly overview
MongoDB: a gentle, friendly overview
Antonio Pintus
 
MongoDB at ZPUGDC
MongoDB at ZPUGDCMongoDB at ZPUGDC
MongoDB at ZPUGDC
Mike Dirolf
 
MongoDB Introduction talk at Dr Dobbs Conference, MongoDB Evenings at Bangalo...
MongoDB Introduction talk at Dr Dobbs Conference, MongoDB Evenings at Bangalo...MongoDB Introduction talk at Dr Dobbs Conference, MongoDB Evenings at Bangalo...
MongoDB Introduction talk at Dr Dobbs Conference, MongoDB Evenings at Bangalo...
Prasoon Kumar
 
Mongodb intro
Mongodb introMongodb intro
Mongodb intro
christkv
 
Building your first app with MongoDB
Building your first app with MongoDBBuilding your first app with MongoDB
Building your first app with MongoDB
Norberto Leite
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
Mike Dirolf
 
10gen MongoDB Video Presentation at WebGeek DevCup
10gen MongoDB Video Presentation at WebGeek DevCup10gen MongoDB Video Presentation at WebGeek DevCup
10gen MongoDB Video Presentation at WebGeek DevCup
WebGeek Philippines
 
Managing Social Content with MongoDB
Managing Social Content with MongoDBManaging Social Content with MongoDB
Managing Social Content with MongoDB
MongoDB
 
Dev Jumpstart: Build Your First App with MongoDB
Dev Jumpstart: Build Your First App with MongoDBDev Jumpstart: Build Your First App with MongoDB
Dev Jumpstart: Build Your First App with MongoDB
MongoDB
 
Using Spring with NoSQL databases (SpringOne China 2012)
Using Spring with NoSQL databases (SpringOne China 2012)Using Spring with NoSQL databases (SpringOne China 2012)
Using Spring with NoSQL databases (SpringOne China 2012)
Chris Richardson
 
Building your first app with mongo db
Building your first app with mongo dbBuilding your first app with mongo db
Building your first app with mongo db
MongoDB
 
MongoDB and Ruby on Rails
MongoDB and Ruby on RailsMongoDB and Ruby on Rails
MongoDB and Ruby on Rails
rfischer20
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
Sean Laurent
 
Ad

More from Mike Dirolf (8)

Indexing
IndexingIndexing
Indexing
Mike Dirolf
 
Inside MongoDB: the Internals of an Open-Source Database
Inside MongoDB: the Internals of an Open-Source DatabaseInside MongoDB: the Internals of an Open-Source Database
Inside MongoDB: the Internals of an Open-Source Database
Mike Dirolf
 
Inside PyMongo - MongoNYC
Inside PyMongo - MongoNYCInside PyMongo - MongoNYC
Inside PyMongo - MongoNYC
Mike Dirolf
 
FrozenRails Training
FrozenRails TrainingFrozenRails Training
FrozenRails Training
Mike Dirolf
 
Python Development (MongoSF)
Python Development (MongoSF)Python Development (MongoSF)
Python Development (MongoSF)
Mike Dirolf
 
MongoDB: How it Works
MongoDB: How it WorksMongoDB: How it Works
MongoDB: How it Works
Mike Dirolf
 
MongoDB hearts Django? (Django NYC)
MongoDB hearts Django? (Django NYC)MongoDB hearts Django? (Django NYC)
MongoDB hearts Django? (Django NYC)
Mike Dirolf
 
MongoDB at RubyConf
MongoDB at RubyConfMongoDB at RubyConf
MongoDB at RubyConf
Mike Dirolf
 
Inside MongoDB: the Internals of an Open-Source Database
Inside MongoDB: the Internals of an Open-Source DatabaseInside MongoDB: the Internals of an Open-Source Database
Inside MongoDB: the Internals of an Open-Source Database
Mike Dirolf
 
Inside PyMongo - MongoNYC
Inside PyMongo - MongoNYCInside PyMongo - MongoNYC
Inside PyMongo - MongoNYC
Mike Dirolf
 
FrozenRails Training
FrozenRails TrainingFrozenRails Training
FrozenRails Training
Mike Dirolf
 
Python Development (MongoSF)
Python Development (MongoSF)Python Development (MongoSF)
Python Development (MongoSF)
Mike Dirolf
 
MongoDB: How it Works
MongoDB: How it WorksMongoDB: How it Works
MongoDB: How it Works
Mike Dirolf
 
MongoDB hearts Django? (Django NYC)
MongoDB hearts Django? (Django NYC)MongoDB hearts Django? (Django NYC)
MongoDB hearts Django? (Django NYC)
Mike Dirolf
 
MongoDB at RubyConf
MongoDB at RubyConfMongoDB at RubyConf
MongoDB at RubyConf
Mike Dirolf
 

Recently uploaded (20)

CyberLink MediaShow Ultra Free CRACK 6.0.10019 Download
CyberLink MediaShow Ultra Free CRACK 6.0.10019 DownloadCyberLink MediaShow Ultra Free CRACK 6.0.10019 Download
CyberLink MediaShow Ultra Free CRACK 6.0.10019 Download
hk7720889
 
gewt ready for the test dicument in the hall
gewt ready for the test dicument in the hallgewt ready for the test dicument in the hall
gewt ready for the test dicument in the hall
MadhusudanVashisht1
 
EUSEBIO VIDAL Pintando La Tradición Un Viaje a Través del Vibrante Azul Domin...
EUSEBIO VIDAL Pintando La Tradición Un Viaje a Través del Vibrante Azul Domin...EUSEBIO VIDAL Pintando La Tradición Un Viaje a Través del Vibrante Azul Domin...
EUSEBIO VIDAL Pintando La Tradición Un Viaje a Través del Vibrante Azul Domin...
EusebioVidal1
 
Why art is important at an early age
Why  art  is  important  at an early ageWhy  art  is  important  at an early age
Why art is important at an early age
littleartistsdigital
 
History of Indian Cinema Grp 11 GKC.pptx
History of Indian Cinema Grp 11 GKC.pptxHistory of Indian Cinema Grp 11 GKC.pptx
History of Indian Cinema Grp 11 GKC.pptx
akankshabhadauriya19
 
IDM Crack with Internet Download Manager 6.42 Build 32
IDM Crack with Internet Download Manager 6.42 Build 32IDM Crack with Internet Download Manager 6.42 Build 32
IDM Crack with Internet Download Manager 6.42 Build 32
nawabana305
 
Colores de mi Tierra, Historias con Alma La Visión Costumbrista de EUSEBIO VI...
Colores de mi Tierra, Historias con Alma La Visión Costumbrista de EUSEBIO VI...Colores de mi Tierra, Historias con Alma La Visión Costumbrista de EUSEBIO VI...
Colores de mi Tierra, Historias con Alma La Visión Costumbrista de EUSEBIO VI...
EusebioVidal1
 
685592115-Elements-of-Poetry.pptxhshshjsjsjs
685592115-Elements-of-Poetry.pptxhshshjsjsjs685592115-Elements-of-Poetry.pptxhshshjsjsjs
685592115-Elements-of-Poetry.pptxhshshjsjsjs
ogenrwotronald10
 
Download SamDrivers Crack Latest [2025-MAY]
Download SamDrivers Crack Latest [2025-MAY]Download SamDrivers Crack Latest [2025-MAY]
Download SamDrivers Crack Latest [2025-MAY]
himowom360
 
Driver Easy Pro Crack 2025 Latest Version | PPT
Driver Easy Pro Crack 2025 Latest Version | PPTDriver Easy Pro Crack 2025 Latest Version | PPT
Driver Easy Pro Crack 2025 Latest Version | PPT
hk7720889
 
What Makes a Great Architectural Model Maker in Dubai.pdf
What Makes a Great Architectural Model Maker in Dubai.pdfWhat Makes a Great Architectural Model Maker in Dubai.pdf
What Makes a Great Architectural Model Maker in Dubai.pdf
paayalsinghh28
 
Sketchup Pro Crack Latest Version 2025??
Sketchup Pro Crack Latest Version 2025??Sketchup Pro Crack Latest Version 2025??
Sketchup Pro Crack Latest Version 2025??
nawabana305
 
VICTORIA TERMINUS & Mysuru Railway Station Architecture.pptx
VICTORIA TERMINUS & Mysuru Railway Station Architecture.pptxVICTORIA TERMINUS & Mysuru Railway Station Architecture.pptx
VICTORIA TERMINUS & Mysuru Railway Station Architecture.pptx
PrajwalKB2
 
ergonomics-20112711jjjjjjjjjjjjjjjjjjj1258.pptx
ergonomics-20112711jjjjjjjjjjjjjjjjjjj1258.pptxergonomics-20112711jjjjjjjjjjjjjjjjjjj1258.pptx
ergonomics-20112711jjjjjjjjjjjjjjjjjjj1258.pptx
klomppomp0
 
Download DriverDoc Pro Crack Latest [2025-MAY]
Download DriverDoc Pro Crack Latest [2025-MAY]Download DriverDoc Pro Crack Latest [2025-MAY]
Download DriverDoc Pro Crack Latest [2025-MAY]
gopopeb361
 
codes and conventions of fashion magazines.pptx
codes and conventions of fashion magazines.pptxcodes and conventions of fashion magazines.pptx
codes and conventions of fashion magazines.pptx
fleurdebruxelles11
 
Capabilities 4_29_2025_TarkentonTLLC.pptx
Capabilities 4_29_2025_TarkentonTLLC.pptxCapabilities 4_29_2025_TarkentonTLLC.pptx
Capabilities 4_29_2025_TarkentonTLLC.pptx
AnnaKristine3
 
Adobe Photoshop CC Crack Download Latest Version
Adobe Photoshop CC Crack Download Latest VersionAdobe Photoshop CC Crack Download Latest Version
Adobe Photoshop CC Crack Download Latest Version
nawabana305
 
Enscape 3D 3.5.5 Crack + License key 2025
Enscape 3D 3.5.5 Crack + License key 2025Enscape 3D 3.5.5 Crack + License key 2025
Enscape 3D 3.5.5 Crack + License key 2025
hk7720889
 
Girl Pow-R pilot storyboard - by Camila Umana
Girl Pow-R pilot storyboard - by Camila UmanaGirl Pow-R pilot storyboard - by Camila Umana
Girl Pow-R pilot storyboard - by Camila Umana
CamilaUmaa7
 
CyberLink MediaShow Ultra Free CRACK 6.0.10019 Download
CyberLink MediaShow Ultra Free CRACK 6.0.10019 DownloadCyberLink MediaShow Ultra Free CRACK 6.0.10019 Download
CyberLink MediaShow Ultra Free CRACK 6.0.10019 Download
hk7720889
 
gewt ready for the test dicument in the hall
gewt ready for the test dicument in the hallgewt ready for the test dicument in the hall
gewt ready for the test dicument in the hall
MadhusudanVashisht1
 
EUSEBIO VIDAL Pintando La Tradición Un Viaje a Través del Vibrante Azul Domin...
EUSEBIO VIDAL Pintando La Tradición Un Viaje a Través del Vibrante Azul Domin...EUSEBIO VIDAL Pintando La Tradición Un Viaje a Través del Vibrante Azul Domin...
EUSEBIO VIDAL Pintando La Tradición Un Viaje a Través del Vibrante Azul Domin...
EusebioVidal1
 
Why art is important at an early age
Why  art  is  important  at an early ageWhy  art  is  important  at an early age
Why art is important at an early age
littleartistsdigital
 
History of Indian Cinema Grp 11 GKC.pptx
History of Indian Cinema Grp 11 GKC.pptxHistory of Indian Cinema Grp 11 GKC.pptx
History of Indian Cinema Grp 11 GKC.pptx
akankshabhadauriya19
 
IDM Crack with Internet Download Manager 6.42 Build 32
IDM Crack with Internet Download Manager 6.42 Build 32IDM Crack with Internet Download Manager 6.42 Build 32
IDM Crack with Internet Download Manager 6.42 Build 32
nawabana305
 
Colores de mi Tierra, Historias con Alma La Visión Costumbrista de EUSEBIO VI...
Colores de mi Tierra, Historias con Alma La Visión Costumbrista de EUSEBIO VI...Colores de mi Tierra, Historias con Alma La Visión Costumbrista de EUSEBIO VI...
Colores de mi Tierra, Historias con Alma La Visión Costumbrista de EUSEBIO VI...
EusebioVidal1
 
685592115-Elements-of-Poetry.pptxhshshjsjsjs
685592115-Elements-of-Poetry.pptxhshshjsjsjs685592115-Elements-of-Poetry.pptxhshshjsjsjs
685592115-Elements-of-Poetry.pptxhshshjsjsjs
ogenrwotronald10
 
Download SamDrivers Crack Latest [2025-MAY]
Download SamDrivers Crack Latest [2025-MAY]Download SamDrivers Crack Latest [2025-MAY]
Download SamDrivers Crack Latest [2025-MAY]
himowom360
 
Driver Easy Pro Crack 2025 Latest Version | PPT
Driver Easy Pro Crack 2025 Latest Version | PPTDriver Easy Pro Crack 2025 Latest Version | PPT
Driver Easy Pro Crack 2025 Latest Version | PPT
hk7720889
 
What Makes a Great Architectural Model Maker in Dubai.pdf
What Makes a Great Architectural Model Maker in Dubai.pdfWhat Makes a Great Architectural Model Maker in Dubai.pdf
What Makes a Great Architectural Model Maker in Dubai.pdf
paayalsinghh28
 
Sketchup Pro Crack Latest Version 2025??
Sketchup Pro Crack Latest Version 2025??Sketchup Pro Crack Latest Version 2025??
Sketchup Pro Crack Latest Version 2025??
nawabana305
 
VICTORIA TERMINUS & Mysuru Railway Station Architecture.pptx
VICTORIA TERMINUS & Mysuru Railway Station Architecture.pptxVICTORIA TERMINUS & Mysuru Railway Station Architecture.pptx
VICTORIA TERMINUS & Mysuru Railway Station Architecture.pptx
PrajwalKB2
 
ergonomics-20112711jjjjjjjjjjjjjjjjjjj1258.pptx
ergonomics-20112711jjjjjjjjjjjjjjjjjjj1258.pptxergonomics-20112711jjjjjjjjjjjjjjjjjjj1258.pptx
ergonomics-20112711jjjjjjjjjjjjjjjjjjj1258.pptx
klomppomp0
 
Download DriverDoc Pro Crack Latest [2025-MAY]
Download DriverDoc Pro Crack Latest [2025-MAY]Download DriverDoc Pro Crack Latest [2025-MAY]
Download DriverDoc Pro Crack Latest [2025-MAY]
gopopeb361
 
codes and conventions of fashion magazines.pptx
codes and conventions of fashion magazines.pptxcodes and conventions of fashion magazines.pptx
codes and conventions of fashion magazines.pptx
fleurdebruxelles11
 
Capabilities 4_29_2025_TarkentonTLLC.pptx
Capabilities 4_29_2025_TarkentonTLLC.pptxCapabilities 4_29_2025_TarkentonTLLC.pptx
Capabilities 4_29_2025_TarkentonTLLC.pptx
AnnaKristine3
 
Adobe Photoshop CC Crack Download Latest Version
Adobe Photoshop CC Crack Download Latest VersionAdobe Photoshop CC Crack Download Latest Version
Adobe Photoshop CC Crack Download Latest Version
nawabana305
 
Enscape 3D 3.5.5 Crack + License key 2025
Enscape 3D 3.5.5 Crack + License key 2025Enscape 3D 3.5.5 Crack + License key 2025
Enscape 3D 3.5.5 Crack + License key 2025
hk7720889
 
Girl Pow-R pilot storyboard - by Camila Umana
Girl Pow-R pilot storyboard - by Camila UmanaGirl Pow-R pilot storyboard - by Camila Umana
Girl Pow-R pilot storyboard - by Camila Umana
CamilaUmaa7
 

MongoDB EuroPython 2009