34 lines
1.0 KiB
Markdown
34 lines
1.0 KiB
Markdown
---
|
||
title: "PostgreSQL"
|
||
type: entity
|
||
tags: [database, postgresql, rdbms, open-source, backend]
|
||
last_updated: 2026-05-01
|
||
---
|
||
|
||
# PostgreSQL
|
||
|
||
## Overview
|
||
|
||
PostgreSQL 是一个功能强大的开源关系型数据库管理系统(RDBMS),以扩展性、标准兼容性和高级特性著称,是 The Agency 工程 Agent 的首选数据库。
|
||
|
||
## Key Features Relevant to Agency Agents
|
||
|
||
- **EXPLAIN ANALYZE**:查询计划分析
|
||
- **B-tree / GiST / GIN / 部分索引 / 复合索引**:多种索引策略
|
||
- **CONCURRENTLY**:创建索引不锁表(零停机生产变更)
|
||
- **json_agg / json_build_object**:JSON 聚合函数,支持嵌套查询
|
||
- **BIGSERIAL**:64位自增主键类型
|
||
- **pg_stat_statements**:慢查询监控扩展
|
||
|
||
## Aliases
|
||
- Postgres
|
||
- PG
|
||
|
||
## Source
|
||
- [[engineering-database-optimizer]]
|
||
|
||
## Connections
|
||
- [[engineering-backend-architect]] — 后端架构师首选数据库
|
||
- [[IndexingStrategies]] — PostgreSQL 索引类型最全面
|
||
- [[engineering-sre]] — SRE 需掌握 pg_stat_statements 监控
|