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

后端 未结 6 800
迷失自我
迷失自我 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 07:07

    In Oracle, locking the table would definitely help. You might want to try that with PostgreSQL, too.

提交回复
热议问题