Add to Wishlist
MongoDB

Introduction to MongoDB
1
Introduction to MongoDB
2
Understanding JSON
3
Conversion between JSON and BSON
4
MongoDB Structure
5
MongoDB Architecture
6
MongoDB Remote Management
MongoDB Installation Options
1
MongoDB Installation on Windows
2
MongoDB Installation on Mac
3
MongoDB Installation on Linux
4
Launch MongoDB as a service on the Mac
5
Installing MongoDB on the Dedicated or VPS server
6
Hosting Services Overview
7
Launch Amazon EC2 server
8
Installing MongoDB on the Ubuntu Server
9
Configure MongoDB network access
10
Allow external access to the server
Using MongoDB as a Service (Cloud MongoDB)
1
Using MongoDB as a Service (Cloud MongoDB)
2
Introduction to MongoDB Cloud
3
Create MongoDB Atlas Cluster
4
Verify connection to the Cloud MongoDB Replica Set
MongoDB Shell
1
Introduction to the MongoDB Shell
2
MongoDB Shell JavaScript Engine
3
Exploring MongoDB Server and Shell versions
4
Getting help in the MongoDB shell
5
MongoDB Shell JavaScript Syntax
6
Arguments in the MongoDB Method
7
MongoDB Shell
DataTypes
1
Primary MongoDB Data Types
2
Most Common MongoDB BSON Types
3
Types Syntax in Shell Mode
4
BSON Type Identifiers
5
Date and ISODate
6
Convert dates to ISODate Format
7
Storing proper Number Types in BSON
8
MongoDB Data Types
CRUD Operations
1
Basic Create, Read, Update and Delete (CRUD) Operations
2
Exploring Databases and Collections
3
Create and Delete Databases and Collections
4
CHALLENGE: Create and delete databases and collections
5
insert()
6
Insert Document with different Value Types
7
CHALLENGE: Insert Document with different Value Types
8
Reading Documents
Cursor
1
Cursor
2
How Cursor works in find()
3
Generating Sample Set of Documents
4
Difference between Batch Size and Iterator Size
5
Change MondoDB Shell Iterator size
6
Cursor iteration using next() and hasNext()
7
Cursor and Iterator
8
forEach() and toArray()
9
count(), limit(), skip() and sort()
10
Chaining sort(), limit() and skip()
11
CHALLENGE: Chaining sort(), limit() and skip()
12
findOne()
MongoDB Queries
1
Insert Sample Documents
2
Empty Query
3
Equality Query
4
Introduction to Operators
5
Comparison Operators $eq, $neq, $lt, $gt
6
$in and $nin
7
Embedded Documents
8
Query Arrays by Specific Value
9
Array operators $all, $size
10
Query Array of Nested Documents
11
Fields Filtering
12
CHALLENGE: Fields Filtering
13
$regex
Updating Documents
1
Create Sample Documents
2
Update Methods Syntax
3
$set & $unset
4
update() one Document
5
update() multiple Documents
6
updateOne()
7
updateMany()
8
replaceOne()
9
Combine multiple update Operators
10
$rename
11
$currentDate
12
Array Update Operators
13
$push
14
$addToSet
15
$pop
16
$pull
17
$pullAll
18
Positional Operator $
19
Positional Operator $ in Nested Documents
Delete Operations
1
Create temp DB, Collection and Documents
Aggregation Framework
1
Introduction to the Aggregation Framework
2
aggregate()
3
Aggregation Expressions
4
Aggregation Example – $match
5
$count
Indexes
1
Introduction to Indexes
2
Indexes Overview
3
Index Creation Process
4
B-tree and how index works
5
Default _id index
6
getIndexes()
Utilities
1
MongoDB Utilities Introduction
2
mongoexport