Node-Postgres:将事务语句合并为一个以提高速度?

时间:2018-08-31 13:55:42

标签: node.js postgresql node-postgres

我目前正在使用node-postgres将大量数据插入 UPDATE 到我的PostgresDB中。 交易最长可达15,000条语句。

我正在使用documentation中概述的交易:

client.query('BEGIN', (err) => {
if (shouldAbort(err)) return
client.query('INSERT INTO users(name) VALUES($1) RETURNING id', ['brianc'], (err, res) => {
  if (shouldAbort(err)) return

  const insertPhotoText = 'INSERT INTO photos(user_id, photo_url) VALUES ($1, $2)'
  const insertPhotoValues = [res.rows[0].id, 's3.bucket.foo']
  client.query(insertPhotoText, insertPhotoValues, (err, res) => {
    if (shouldAbort(err)) return

    client.query('COMMIT', (err) => {
      if (err) {
        console.error('Error committing transaction', err.stack)
      }
      done()
    })
  })
})

问题,但是,每个Transaction语句都是单独发送到数据库的,这在示例中很有意义,但是在我们的用例中,我们将永远不需要从先前的语句中获取结果。 。

因此,我很想将所有语句放在一个语句中并立即执行,以减少事务的总持续时间。

很想知道这是否会导致任何不良行为。谢谢!

1 个答案:

答案 0 :(得分:0)

下定决心。在语句中放置多个命令时,查询将失败: “错误:无法在准备好的语句中插入多个命令”