statement_timeout コード>
クライアントで:
const { Client } = require('pg')
const client = new Client({
statement_timeout: 10000
})
またはプール内:
const { Pool } = require('pg')
const pool = new Pool({
statement_timeout: 10000
})
statement_timeout コード>
クライアントで:
const { Client } = require('pg')
const client = new Client({
statement_timeout: 10000
})
またはプール内:
const { Pool } = require('pg')
const pool = new Pool({
statement_timeout: 10000
})