How to speed up insertion performance in PostgreSQL

后端 未结 7 802
走了就别回头了
走了就别回头了 2020-11-22 06:25

I am testing Postgres insertion performance. I have a table with one column with number as its data type. There is an index on it as well. I filled the database up using thi

7条回答
  •  离开以前
    2020-11-22 07:06

    For optimal Insertion performance disable the index if that's an option for you. Other than that, better hardware (disk, memory) is also helpful

提交回复
热议问题