What is PostgreSQL?

What is PostgreSQL?

ยท

2 min read

Introduction

  1. PostgreSQL is an Object Relational Database Management System.

  2. It's also called ORDMS.

  3. It's an Open-Source Database Management System.

  4. It uses MYSQL standards.

  5. It follows a client-server architecture.

Client Applications: PostgreSQL can be accessed by various client applications such as command-line tools, graphical user interfaces (GUIs), web applications, and programming languages.

Server: The PostgreSQL server is the core component that manages the database and handles client requests. It consists of several processes and components:
Postmaster: This is the main process that manages the database connections, authentication, and other server-level operations.

  • Background Writer (BGW): It manages the writing of modified data from memory (shared buffers) to disk (data files) to ensure data durability.

  • Checkpointer: This process writes dirty pages from shared buffers to disk and updates the checkpoint records.

  • Autovacuum Launcher: It automatically initiates the vacuuming and analyzing of tables to reclaim disk space and update query statistics.

  • Shared Memory: PostgreSQL uses shared memory to facilitate communication and data sharing among various server processes.

We are committed to delivering content that informs, inspires, and resonates with you. Your comments, and shared insights fuel our passion to continue creating valuable content.

As we move forward, we invite you to stay connected with us. Feel free to share your thoughts in the comments.

Once again, thank you for being a part of our community. We look forward to continuing this journey together.

ย