MongoDB

How To Use MongoDB in a Flask Application — step-by-step Databases tutorial on Progressive Robot

How To Use MongoDB in a Flask Application

In web applications, you usually need a database to store and maintain persistent data. Flask is a lightweight Python web framework that provides useful tools and features for creating web applications in the Python Language. MongoDB is a general-purpose, document-oriented, NoSQL database program that uses JSON-like documents to store data. In this tutorial, you’ll build a small todo list web application that demonstrates how to use the PyMongo library, a MongoDB database driver.

Read more
Como Instalar o MongoDB no Ubuntu 16.04 — step-by-step Linux tutorial on Progressive Robot

Como Instalar o MongoDB no Ubuntu 16.04

O MongoDB é um banco de dados livre e open-source de documentos NoSQL utilizado comumente nas modernas aplicações web. Este tutorial irá ajudá-lo a configurar o MongoDB em seu servidor para um ambiente de produção de aplicações. <$>[note] No momento dessa publicação, os…

Read more
How To Configure Remote Access for MongoDB on CentOS 8 — step-by-step Linux tutorial on Progressive Robot

How To Configure Remote Access for MongoDB on CentOS 8

This tutorial walks you through configuring a MongoDB installation to securely allow access from a trusted remote computer. This will involve updating your firewall rules to provide the remote server access to MongoDB’s default port and changing Mongo’s configuration file to update its IP binding setting.

Read more
How To Design a Document Schema in MongoDB — step-by-step Databases tutorial on Progressive Robot

How To Design a Document Schema in MongoDB

Document-oriented databases like MongoDB make it possible to break free from rigidity and limitations of the relational model. However, the flexibility and freedom from being able to store self-descriptive documents in the database can lead to other pitfalls and difficulties. This conceptual article outlines the common guidelines related to schema design in a document-oriented database and typical ways to model relationships between data.

Read more
How To Perform CRUD Operations in MongoDB — step-by-step Databases tutorial on Progressive Robot

How To Perform CRUD Operations in MongoDB

Data management involves four fundamental types of database operations: operations that allow you to create, read, update, and delete data. Collectively, these operations are known as CRUD operations. This tutorial outlines how to create new MongoDB documents and later retrieve them to read their data. It also explains how to update the data within documents, as well as how to delete documents when they are no longer needed.

Read more
CHAT