小于 1 分钟
Chapter 14. Performance Tips
Table of Contents
14.1. Using EXPLAIN : 14.1.1. EXPLAIN Basics
[14.1.2. `EXPLAIN ANALYZE`](using-explain.md#USING-EXPLAIN-ANALYZE)
[14.1.3. Caveats](using-explain.md#USING-EXPLAIN-CAVEATS)
14.2. Statistics Used by the Planner : 14.2.1. Single-Column Statistics
[14.2.2. Extended Statistics](planner-stats.md#PLANNER-STATS-EXTENDED)
14.3. Controlling the Planner with Explicit JOIN Clauses
14.4. Populating a Database : 14.4.1. Disable Autocommit
[14.4.2. Use `COPY`](populate.md#POPULATE-COPY-FROM)
[14.4.3. Remove Indexes](populate.md#POPULATE-RM-INDEXES)
[14.4.4. Remove Foreign Key Constraints](populate.md#POPULATE-RM-FKEYS)
[14.4.5. Increase `maintenance_work_mem`](populate.md#POPULATE-WORK-MEM)
[14.4.6. Increase `max_wal_size`](populate.md#POPULATE-MAX-WAL-SIZE)
[14.4.7. Disable WAL Archival and Streaming Replication](populate.md#POPULATE-PITR)
[14.4.8. Run `ANALYZE` Afterwards](populate.md#POPULATE-ANALYZE)
[14.4.9. Some Notes About pg_dump](populate.md#POPULATE-PG-DUMP)
Query performance can be affected by many things. Some of these can be controlled by the user, while others are fundamental to the underlying design of the system. This chapter provides some hints about understanding and tuning PostgreSQL performance.
