Databases

Интеграция MongoDB с вашим приложением Node — step-by-step Linux tutorial on Progressive Robot

Интеграция MongoDB с вашим приложением Node

При работе с Node.js вы можете столкнуться с ситуацией, когда вы разрабатываете проект, который будет сохранять и запрашивать данные. В данном случае вам нужно будет выбрать решение для базы данных, которое будет отвечать характеристикам данных приложения и…

Read more
Como Gerenciar Réplicas e Clientes no Redis — step-by-step Linux tutorial on Progressive Robot

Como Gerenciar Réplicas e Clientes no Redis

O Redis é um armazenamento de dados open-source de chave-valor na memória. Um dos seus recursos mais procurados é o suporte à replicação: qualquer servidor Redis pode replicar seus dados para qualquer número de réplicas, permitindo alta escalabilidade de…

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
How To Use Comparison and IS NULL Operators in SQL — step-by-step DevOps tutorial on Progressive Robot

How To Use Comparison and IS NULL Operators in SQL

In certain Structured Query Language (SQL) statements, WHERE clauses can be used to limit what rows the given operation will affect. SQL allows users to retrieve granular result sets by providing a variety of different types of predicates, each of which use a specific operator to evaluate rows. This guide will outline two types of predicates and the operators they use: comparison operators and the IS NULL operator.

Read more
How To Use Go with MongoDB Using the MongoDB Go Driver — step-by-step Databases tutorial on Progressive Robot

How To Use Go with MongoDB Using the MongoDB Go Driver

Like the other official MongoDB drivers, the Go driver is idiomatic to the Go programming language and provides an easy way to use MongoDB as the database solution for a Go program. In this tutorial you’ll get started with using the official MongoDB Go Driver. You’ll install the driver, connect to a MongoDB database, and perform several CRUD operations. In the process, you’ll create a task manager program for managing tasks through the command line.

Read more
How To Use Sharding in MongoDB — step-by-step Databases tutorial on Progressive Robot

How To Use Sharding in MongoDB

Sharding is a strategy some users will implement to help them scale their database horizontally, with the hope being that the improved scalability will outweigh the added complexity. This guide outlines how sharding works in MongoDB, a popular, document-oriented, NoSQL database.

Read more
How To Use the sqlite3 Module in Python 3 — step-by-step Databases tutorial on Progressive Robot

How To Use the sqlite3 Module in Python 3

SQLite is a self-contained, file-based SQL database. SQLite comes bundled with Python and can be used in any of your Python applications without having to install any additional software. In this tutorial, we’ll go through the sqlite3 module in Python 3.

Read more
CHAT