2010-11-21 04:09:18 +08:00
|
|
|
module.exports = {
|
|
|
|
//database user's name
|
2011-03-02 04:13:04 +08:00
|
|
|
user: process.env.USER,
|
2012-02-03 13:27:52 +08:00
|
|
|
|
2010-11-21 04:09:18 +08:00
|
|
|
//name of database to connect
|
2011-03-02 04:13:04 +08:00
|
|
|
database: process.env.USER,
|
2012-02-03 13:27:52 +08:00
|
|
|
|
2010-11-21 04:09:18 +08:00
|
|
|
//database user's password
|
2011-03-02 04:13:04 +08:00
|
|
|
password: null,
|
2012-02-03 13:27:52 +08:00
|
|
|
|
2010-11-21 04:09:18 +08:00
|
|
|
//database port
|
|
|
|
port: 5432,
|
2012-02-03 13:27:52 +08:00
|
|
|
|
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,
|
2012-02-03 13:27:52 +08:00
|
|
|
|
2010-11-21 04:09:18 +08:00
|
|
|
//number of connections to use in connection pool
|
|
|
|
//0 will disable connection pooling
|
2011-08-12 10:52:29 +08:00
|
|
|
poolSize: 10,
|
2012-02-03 13:27:52 +08:00
|
|
|
|
|
|
|
//max milliseconds a client can go unused before it is removed
|
|
|
|
//from the pool and destroyed
|
2011-11-21 18:45:55 +08:00
|
|
|
poolIdleTimeout: 30000,
|
2012-02-03 13:27:52 +08:00
|
|
|
|
|
|
|
//frequeny to check for idle clients within the client pool
|
|
|
|
reapIntervalMillis: 1000,
|
|
|
|
|
2011-11-21 18:45:55 +08:00
|
|
|
// binary result mode
|
|
|
|
binary: false
|
2010-11-21 04:09:18 +08:00
|
|
|
}
|