SlideShare a Scribd company logo
MongoDB & PHP
© 1993-2012. EPAM Systems. All Rights Reserved.
Alex Litvinok
Just Intro.
MongoDB is
Document-oriented
database
Full Index support
Querying
Atomic modifiers
Replication & Sharding
Map-Reduce & GridFS
MongoDB in SQL terms
Normalized
SQL Credo
Denormalized
True MongoDB
Not Only SQL.
Retains some friendly properties of
SQL.
AGPL license
Written on C++
Custom protocol (BSON)
Best of BigTable and Dynamo
Apache license
Written on Java
Thrift & custom binary (CQL3) protocol
Blazing fast
BSD license
Written on C/C++
Thrift & custom binary (CQL3) protocol
DB consistency, ease of use
Apache license
Written on C/C++
HTTP/REST protocol
Graph database - connected data
GPL/AGPL/Commercial licenses
Written on Java
HTTP/REST (or embedding in Java) protocol
Billions of rows X millions of
columns
Apache license
Written on Java
HTTP/REST (also Thrift) protocol
MongoDB Documents
Cassandra Column families
Redis Collections
CouchDB Documents
Neo4j Graphs
Hbase Column families
B-Tree MongoDB
Memtable / SSTable Cassandra
In-Memory with snapshots Redis
Append-only B-Tree CouchDB
On-disk linked lists Neo4j
Memtable / SSTable on HDFS Hbase
When? Why?
SAP uses MongoDB as a core
component of SAP’s platform-
as-a-service (PaaS) offering.
MongoDB is used for back-end
storage on the SourceForge
front pages, project pages,
and download pages for all
projects.
The New York Times is using
MongoDB in a form-building
application for photo
submissions.
GitHub uses MongoDB for an
internal reporting
application.
Foursquare uses MongoDB to
store venues and user check-
ins into venues, sharding the
data over more than 25
machines on Amazon EC2.
They all use MongoDB
And they too..
About Integration.
Native PHP Driver
01. <?php
02.
03. $m = new MongoClient();
04. $db = $m->selectDB("example");
05.
06. ?>
ent class .
ongoDB class
ection class
.
sor class .
. The Mon
The MongoD
. The
.
. The Mo
The MongoClient class
The MongoDB class
The MongoCollection class
The MongoCursor class
01. $m = new MongoClient();
02. $db = $m->comedy;
03. $coll = $db->cartoons;
04.
05. $call->insert([‘name’=>’Alex’]);
06.
07. $result = $call->find();
08. $result = $call->find([‘name’ => ‘Alex’]);
CakePHP
Doctrine
Drupal
Kohana Framework
Lithium
Yii
Zend Framework
Libraries and Frameworks
ActiveMongo
MapReduce API
MongoFilesystem
Mandango
MongoDB Pagination
MongoDB PHP ODM
Stand-Alone Tools
http://docs.mongodb.org/ecosystem/drivers/php-
libraries/
The End.
The End.

More Related Content

What's hot (13)

PDF
Deploying JBoss A-MQ in a high availability (HA) environment
Scott Cranton
 
KEY
WordPress: Performance, Optimization & Scaling
Pete Mall
 
PDF
Hdfs internals
Bhupesh Chawda
 
PPT
5 Things You Didn't Know You Could do with CouchDB
Mark Headd
 
ODP
Tokyo Cabinet
ehuard
 
PPT
Tokyo Cabinet
André Mayer
 
PDF
Storage tiering and erasure coding in Ceph (SCaLE13x)
Sage Weil
 
PDF
In-memory database
Chien Nguyen Dang
 
PPT
Intro ror
tim_tang
 
PPTX
Ceph at Work in Bloomberg: Object Store, RBD and OpenStack
Red_Hat_Storage
 
PPTX
Can the elephants handle the no sql onslaught
Aung Thu Rha Hein
 
PDF
Experiences building a distributed shared log on RADOS - Noah Watkins
Ceph Community
 
PDF
MongoDB in Simple and Easy Steps
Brahma Vankayalapati
 
Deploying JBoss A-MQ in a high availability (HA) environment
Scott Cranton
 
WordPress: Performance, Optimization & Scaling
Pete Mall
 
Hdfs internals
Bhupesh Chawda
 
5 Things You Didn't Know You Could do with CouchDB
Mark Headd
 
Tokyo Cabinet
ehuard
 
Tokyo Cabinet
André Mayer
 
Storage tiering and erasure coding in Ceph (SCaLE13x)
Sage Weil
 
In-memory database
Chien Nguyen Dang
 
Intro ror
tim_tang
 
Ceph at Work in Bloomberg: Object Store, RBD and OpenStack
Red_Hat_Storage
 
Can the elephants handle the no sql onslaught
Aung Thu Rha Hein
 
Experiences building a distributed shared log on RADOS - Noah Watkins
Ceph Community
 
MongoDB in Simple and Easy Steps
Brahma Vankayalapati
 

Similar to MongoDB & PHP by Alex Litvinok (20)

PPTX
MongoDB presentation
Hyphen Call
 
PDF
Mongo db dhruba
Dhrubaji Mandal ♛
 
PPTX
MongoDB Internals
Siraj Memon
 
PPT
MongoDb - Details on the POC
Amardeep Vishwakarma
 
PPTX
Onomi - MongoDB Introduction
Onomi
 
PPTX
MongoDB_database_nosql_mongo_db_data.pptx
shivakalyankar13
 
PPTX
Mongo db
Gyanendra Yadav
 
PPTX
MongoDB
Rony Gregory
 
PPT
Introduction to MongoDB
Ravi Teja
 
PPTX
MongoDB for the SQL Server
Paulo Fagundes
 
PPTX
MongoDB NoSQL - Developer Guide
Shiv K Sah
 
PDF
3-Mongodb and Mapreduce Programming.pdf
MarianJRuben
 
PPTX
Training MongoDB - Monitoring and Operability
Nicolas Motte
 
PPTX
Mongo db Quick Guide
Sourabh Sahu
 
PDF
MongoDB - An Introduction
sethfloydjr
 
PDF
MongoDB
wiTTyMinds1
 
PDF
Open source Technology
Amardeep Vishwakarma
 
PDF
A Study on Mongodb Database
IJSRD
 
MongoDB presentation
Hyphen Call
 
Mongo db dhruba
Dhrubaji Mandal ♛
 
MongoDB Internals
Siraj Memon
 
MongoDb - Details on the POC
Amardeep Vishwakarma
 
Onomi - MongoDB Introduction
Onomi
 
MongoDB_database_nosql_mongo_db_data.pptx
shivakalyankar13
 
Mongo db
Gyanendra Yadav
 
MongoDB
Rony Gregory
 
Introduction to MongoDB
Ravi Teja
 
MongoDB for the SQL Server
Paulo Fagundes
 
MongoDB NoSQL - Developer Guide
Shiv K Sah
 
3-Mongodb and Mapreduce Programming.pdf
MarianJRuben
 
Training MongoDB - Monitoring and Operability
Nicolas Motte
 
Mongo db Quick Guide
Sourabh Sahu
 
MongoDB - An Introduction
sethfloydjr
 
MongoDB
wiTTyMinds1
 
Open source Technology
Amardeep Vishwakarma
 
A Study on Mongodb Database
IJSRD
 
Ad

More from php-user-group-minsk (6)

PPTX
Continuous Integration for PHP projects - Theory by Alex Simanovich
php-user-group-minsk
 
PPT
Development on the Knee by Vladimir Khramtsov
php-user-group-minsk
 
PPTX
Symfony Under Control by Maxim Romanovsky
php-user-group-minsk
 
PDF
То, что вы хотели знать о HandlerSocket, но не смогли нагуглить
php-user-group-minsk
 
PPTX
Composer talk by Maxim Romanovsky
php-user-group-minsk
 
PDF
Composer in the wilderness by Josef Bielawski
php-user-group-minsk
 
Continuous Integration for PHP projects - Theory by Alex Simanovich
php-user-group-minsk
 
Development on the Knee by Vladimir Khramtsov
php-user-group-minsk
 
Symfony Under Control by Maxim Romanovsky
php-user-group-minsk
 
То, что вы хотели знать о HandlerSocket, но не смогли нагуглить
php-user-group-minsk
 
Composer talk by Maxim Romanovsky
php-user-group-minsk
 
Composer in the wilderness by Josef Bielawski
php-user-group-minsk
 
Ad

Recently uploaded (20)

PPTX
Top Managed Service Providers in Los Angeles
Captain IT
 
PDF
CloudStack GPU Integration - Rohit Yadav
ShapeBlue
 
PDF
Empowering Cloud Providers with Apache CloudStack and Stackbill
ShapeBlue
 
PDF
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
PDF
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
PDF
Women in Automation Presents: Reinventing Yourself — Bold Career Pivots That ...
DianaGray10
 
PPTX
Darren Mills The Migration Modernization Balancing Act: Navigating Risks and...
AWS Chicago
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PPTX
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
PDF
SFWelly Summer 25 Release Highlights July 2025
Anna Loughnan Colquhoun
 
PPTX
Building and Operating a Private Cloud with CloudStack and LINBIT CloudStack ...
ShapeBlue
 
PDF
Impact of IEEE Computer Society in Advancing Emerging Technologies including ...
Hironori Washizaki
 
PPTX
✨Unleashing Collaboration: Salesforce Channels & Community Power in Patna!✨
SanjeetMishra29
 
PDF
CIFDAQ Weekly Market Wrap for 11th July 2025
CIFDAQ
 
PDF
Blockchain Transactions Explained For Everyone
CIFDAQ
 
PDF
NewMind AI Journal - Weekly Chronicles - July'25 Week II
NewMind AI
 
PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PDF
Français Patch Tuesday - Juillet
Ivanti
 
PDF
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
PDF
Persuasive AI: risks and opportunities in the age of digital debate
Speck&Tech
 
Top Managed Service Providers in Los Angeles
Captain IT
 
CloudStack GPU Integration - Rohit Yadav
ShapeBlue
 
Empowering Cloud Providers with Apache CloudStack and Stackbill
ShapeBlue
 
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
Women in Automation Presents: Reinventing Yourself — Bold Career Pivots That ...
DianaGray10
 
Darren Mills The Migration Modernization Balancing Act: Navigating Risks and...
AWS Chicago
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
SFWelly Summer 25 Release Highlights July 2025
Anna Loughnan Colquhoun
 
Building and Operating a Private Cloud with CloudStack and LINBIT CloudStack ...
ShapeBlue
 
Impact of IEEE Computer Society in Advancing Emerging Technologies including ...
Hironori Washizaki
 
✨Unleashing Collaboration: Salesforce Channels & Community Power in Patna!✨
SanjeetMishra29
 
CIFDAQ Weekly Market Wrap for 11th July 2025
CIFDAQ
 
Blockchain Transactions Explained For Everyone
CIFDAQ
 
NewMind AI Journal - Weekly Chronicles - July'25 Week II
NewMind AI
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
Français Patch Tuesday - Juillet
Ivanti
 
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
Persuasive AI: risks and opportunities in the age of digital debate
Speck&Tech
 

MongoDB & PHP by Alex Litvinok