Tag: MongoDB

MongoDB Sharding - How to Deploy a Sharded Cluster

June 9, 2022

Sharding is a MongoDB feature that enables easy scaling. It allows MongoDB to support high throughput operations on large data sets. This article will show you how to deploy a sharded MongoDB cluster using Docker and Docker Compose.

Read more

How to Run MongoDB on Kubernetes

February 24, 2022

MongoDB is a general purpose, document-based NoSQL. This tutorial will teach you how to deploy MongoDB on Kubernetes as a standalone, local development instance, and as a replica set.

Read more

MongoDB vs. MySQL

December 31, 2020

The rise of NoSQL databases caused a stir in the database community, with many companies deciding to adopt the novel approach to database management. This article analyses how MongoDB, a document-oriented NoSQL, compares with MySQL, a traditional relational database management system.

Read more

SQL vs NoSQL: What's the Difference?

August 25, 2020

There are two main types of database solutions: SQL and NoSQL. In this article, you will learn the key differences between these database types.

Read more

How to Install MongoDB on CentOS 8

July 15, 2020

MongoDB allows storing different fields in different documents, without a permanently fixed data structure. To set up MongoDB on CentOS 8, follow this step-by-step guide and install and configure the popular NoSQL database.

Read more

What Is NoSQL Database? – NoSQL Explained

June 17, 2020

The article provides a detailed explanation of what a NoSQL databases is and how it differs from relational databases. It focuses on the strengths and weaknesses of the non-relational database model using many practical examples.

Read more

NoSQL Database Types

June 10, 2020

NoSQL databases are an alternative to the traditional SQL databases. They are more flexible, scalable and functional for working with big data. There are different types of NoSQL databases. The most widely used types include: key-value databases, document databases, wide-column databases, and graph databases.

Read more

How to Create Database & Collection in MongoDB

April 29, 2020

Create new MongoDB databases and add data collections by using the commands presented in this article. The use, insert and find commands are crucial tools that allow you to perform basic administrative tasks on your database servers.

Read more

How to Deploy and Manage MongoDB with Docker

February 25, 2020

This tutorial shows you how to use Docker and an official MongoDB container image to deploy your databases. Additionally, it covers basic commands that allow you to interact with the MongoDB client effectively.

Read more

How to Install MongoDB on Ubuntu 18.04

November 26, 2019

MongoDB is a database program that provides high performance, high availability, and automatic scaling to your databases. Use this tutorial to learn how to install MongoDB using two different methods. The article also shows you how to implement basic security features to get you started.

Read more