node-postgres/lib/defaults.js

41 lines
915 B
JavaScript
Raw Normal View History

2010-11-21 04:09:18 +08:00
module.exports = {
// database host defaults to localhost
host: 'localhost',
2010-11-21 04:09:18 +08:00
//database user's name
user: process.env.USER,
2010-11-21 04:09:18 +08:00
//name of database to connect
database: process.env.USER,
2010-11-21 04:09:18 +08:00
//database user's password
password: null,
2010-11-21 04:09:18 +08:00
//database port
port: 5432,
2010-11-21 04:09:18 +08:00
//number of rows to return at a time from a prepared statement's
//portal. 0 will return all rows at once
rows: 0,
// binary result mode
binary: false,
//Connection pool options - see https://github.com/coopernurse/node-pool
2010-11-21 04:09:18 +08:00
//number of connections to use in connection pool
//0 will disable connection pooling
poolSize: 10,
//max milliseconds a client can go unused before it is removed
//from the pool and destroyed
poolIdleTimeout: 30000,
//frequeny to check for idle clients within the client pool
reapIntervalMillis: 1000,
//pool log function / boolean
2013-06-07 03:06:52 +08:00
poolLog: false,
2013-06-07 03:32:04 +08:00
client_encoding: ""
2013-01-21 21:54:19 +08:00
};