postgresql 优化说明一

前端之家收集整理的这篇文章主要介绍了postgresql 优化说明一前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Performance Tips

Table of Contents

1、Using EXPLAIN and explain Analyze

2、Statistics Used by the Planner

3、Controllingthe Planner with Explicit JOIN Clauses

4、Populatinga Database

4.1. Disable Autocommit,Turn off autocommit and just do one commit at the end

4.2. Use COPY to load all the rows in one command,instead of using a series of INSERT commands

4.3. Remove Indexes,the fastest way is to create the table,bulk load the

table's data using COPY,then create any indexes needed for the table

4.4. Increasemaintenance_work_mem

4.5. Increase checkpoint_segments

4.6. Run ANALYZE Afterwards,Running ANALYZE (or VACUUM ANALYZE) ensures that the

plannerhas up-to-date statistics about the table. 原文链接:https://www.f2er.com/postgresql/196853.html

猜你在找的Postgre SQL相关文章