How can I speed up update/replace operations in PostgreSQL?

后端 未结 6 753
迷失自我
迷失自我 2021-02-01 06:13

We have a rather specific application that uses PostgreSQL 8.3 as a storage backend (using Python and psycopg2). The operations we perform to the important tables are in the ma

6条回答
  •  太阳男子
    2021-02-01 06:54

    For updates, you can lower your fillfactor for the tables and the indexes and that might help

    http://www.postgresql.org/docs/current/static/sql-createtable.html

    http://www.postgresql.org/docs/current/static/sql-createindex.html

提交回复
热议问题