PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Node PostgreSQL timeout di una query da parte del client

Puoi impostare statement_timeout nel cliente:

const { Client } = require('pg')

const client = new Client({
  statement_timeout: 10000
})

o in piscina:

const { Pool } = require('pg')

const pool = new Pool({
  statement_timeout: 10000
})