合 《PostgreSQL技术内幕——原理探索》目录
Tags: PGPostgreSQL翻译《PostgreSQL技术内幕——原理探索》目录
原文
英文版:https://www.interdb.jp/pg/index.html
《The Internals of PostgreSQL for database administrators and system developers》
Contents
- Chapter 1. Database Cluster, Databases and Tables
- Chapter 2. Process and Memory Architecture
- Chapter 3. Query Processing
- Chapter 4. Foreign Data Wrappers (FDW) and Parallel Query
- Chapter 5. Concurrency Control
- Chapter 6. VACUUM Processing
- Chapter 7. Heap Only Tuple (HOT) and Index-Only Scans
- Chapter 8. Buffer Manager
- Chapter 9. Write Ahead Logging (WAL)
- Chapter 10. Base Backup and Point-In-Time Recovery (PITR)
- Chapter 11. Streaming Replication
概览
PostgreSQL是一个开源的关系型数据库,在世界各地被广泛用于各种目的。它是一个由多个子系统集成而来的巨大系统,每个子系统都包含着特殊的复杂功能,并与其它子系统相互协调工作。理解其内部原理对于管理和集成PostgreSQL而言至关重要,但其巨大性与复杂性让这一点变得相当困难。本书的主要目的是解释这些子系统是如何工作的,并提供一副关于PostgreSQL的全景图像。