PostgreSQL Performance Optimization Techniques - Part 1

PostgreSQL is a powerful open-source relational database management system that offers a wide range of features for optimizing performance. In this article, we explore some of the most effective techniques for optimizing PostgreSQL performance, including indexing, query optimization, and configuration tuning.

March 30, 2024 · 4 min · 700 words · Bá Tới

A Comparison of Data Storage on Disk in PostgreSQL and MySQL

Explore how data is stored on disk in PostgreSQL and MySQL, two popular database management systems. Learn about their storage architecture, file structure, and data access optimization to understand the differences and similarities between the two systems.

March 24, 2024 · 5 min · 864 words · Bá Tới

Understanding PostgreSQL Partitioning

PostgreSQL partitioning is a powerful feature that allows you to divide large tables into smaller, more manageable pieces for improved performance and maintenance. Learn how to implement partitioning in PostgreSQL and leverage its benefits for your database.

January 15, 2024 · 5 min · 997 words · Bá Tới

Optimizing PostgreSQL Data File Read

PostgreSQL Data File Read refers to the process of reading data from the data files in a PostgreSQL database. These data files include the base data files, which contain tables, indexes, and data of other objects in the database. Reading data from data files can become a bottleneck in the performance of the database, especially when the database is large and experiences a high volume of concurrent queries. Optimizing PostgreSQL Data File Read is essential to improve the performance of the database system and minimize the response time of queries.

July 16, 2023 · 2 min · 303 words · Bá Tới

Master-Master vs. Master-Slave Replication in Distributed Relational Databases

In the distributed relational database model, two common modules are master-master and master-slave replication. Let’s explore each of these modules and when to use them.

August 7, 2022 · 4 min · 640 words · Bá Tới

PostgreSQL Best Practices

PostgreSQL is a powerful, open source object-relational database system. It has more than 15 years of active development and a proven architecture. In this post, I will share some best practices to optimize your PostgreSQL database.

September 28, 2016 · 9 min · 1720 words · Bá Tới