Databases

How to Scale a Discourse Deployment with a Load Balancer and Managed Database Cluster — step-by-step Databases tutorial on Progressive Robot

How to Scale a Discourse Deployment with a Load Balancer and Managed Database Cluster

After completing this tutorial, you will have a highly available, easily scalable Discourse deployment running on the cloud provider. You’ll start with a fresh Ubuntu 20.04 Droplet and you’ll finish with a horizontally scalable Discourse installation that includes a Load Balancer, Managed PostgreSQL cluster, Redis instance (optional), and additional Droplets.

Read more
How To Use Indexes in MySQL — step-by-step Databases tutorial on Progressive Robot

How To Use Indexes in MySQL

As the data in a database increases, search performance can suffer. The larger the dataset, the harder it is for the database engine to find the documents that match the query quickly. Database administrators can use indexes to aid the database engine and improve its performance. In this tutorial, you’ll learn what indexes are, how to create them, and confirm whether they’re used to query the database.

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

How To Use Schema Validation in MongoDB

In MongoDB, the database engine feature that makes it possible to apply constraints on the document structure is called Schema Validation and is built around JSON Schema, an open standard for JSON document structure description & validation. In this tutorial, you’ll learn about schema validation and format requirements in MongoDB, and how to apply these to control structure of documents in a database.

Read more
MongoDB Java CRUD Example Tutorial — step-by-step Databases tutorial on Progressive Robot

MongoDB Java CRUD Example Tutorial

URL: https://www.progressiverobot.com/mongodb-java-crud-example-tutorial/ Welcome to MongoDB Java Example Tutorial. Earlier we learned [how to install MongoDB in Unix machines](/community/tutorials/install-mongodb-linux "How to install MongoDB on Unix/Linux Systems") and executed some commands from terminal. Today we will look into the MongoDB Java Driver features and how to perform common CRUD (Create, Read, Update, Delete) operations. MongoDB Java ![mongodb […]

Read more
CHAT