Author Archives

MongoDB – Create Backup

In this chapter, we will see how to create a backup in MongoDB. Dump MongoDB Data To create backup...

MongoDB – Create Backup

In this chapter, we will see how to create a backup in MongoDB. Dump MongoDB Data To create backup...

MongoDB – Sharding

Sharding is the process of storing data records across multiple machines and it is MongoDB's approach to meeting the...

MongoDB – Sharding

Sharding is the process of storing data records across multiple machines and it is MongoDB's approach to meeting the...

MongoDB – Replication

Replication is the process of synchronizing data across multiple servers. Replication provides redundancy and increases data availability with multiple...

MongoDB – Replication

Replication is the process of synchronizing data across multiple servers. Replication provides redundancy and increases data availability with multiple...

MongoDB – Indexing

Indexes support the efficient resolution of queries. Without indexes, MongoDB must scan every document of a collection to select...

MongoDB – Indexing

Indexes support the efficient resolution of queries. Without indexes, MongoDB must scan every document of a collection to select...

MongoDB – Aggregation

Aggregations operations process data records and return computed results. Aggregation operations group values from multiple documents together, and can...

MongoDB – Aggregation

Aggregations operations process data records and return computed results. Aggregation operations group values from multiple documents together, and can...

MongoDB – Sort Records

In this chapter, we will learn how to sort records in MongoDB. The sort() Method To sort documents in...

MongoDB – Sort Records

In this chapter, we will learn how to sort records in MongoDB. The sort() Method To sort documents in...

MongoDB – Limit Records

In this chapter, we will learn how to limit records using MongoDB. The Limit() Method To limit the records...

MongoDB – Limit Records

In this chapter, we will learn how to limit records using MongoDB. The Limit() Method To limit the records...

MongoDB – Projection

In MongoDB, projection means selecting only the necessary data rather than selecting whole of the data of a document....

MongoDB – Projection

In MongoDB, projection means selecting only the necessary data rather than selecting whole of the data of a document....

MongoDB – Delete Document

In this chapter, we will learn how to delete a document using MongoDB. The remove() Method MongoDB's remove() method...

MongoDB – Delete Document

In this chapter, we will learn how to delete a document using MongoDB. The remove() Method MongoDB's remove() method...

MongoDB – Update Document

MongoDB's update() and save() methods are used to update document into a collection. The update() method updates the values...

MongoDB – Update Document

MongoDB's update() and save() methods are used to update document into a collection. The update() method updates the values...