Last active
December 11, 2019 17:30
-
-
Save abhi11210646/2d6b3ed19974dc3991496bfd871035eb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const mongoose = require('mongoose'); | |
mongoose.Promise = require('bluebird'); | |
module.exports = (config) => { | |
if (process.env.NODE_ENV === 'development') | |
mongoose.set('debug', true); | |
let options = { keepAlive: 300000 }; | |
if (process.env.NODE_ENV === 'production') { | |
options = { | |
server: { poolSize: 100, socketOptions: { keepAlive: 300000, connectTimeoutMS: 30000 } }, | |
replset: { poolSize: 100, socketOptions: { keepAlive: 300000, connectTimeoutMS: 30000 } } | |
}; | |
console.log('Connecting to mongo with options', options); | |
} | |
options['useMongoClient'] = true; | |
mongoose.connect(config.db, options, (err) => { | |
if (err) console.log('[1]MongoDB connect Error:', err); | |
}); | |
//first conn | |
mongoose.connection.on('connected', function () { | |
console.log('[1]Mongoose connection open to ' + config.db.split('/').pop()); | |
}); | |
mongoose.connection.once('open', () => { | |
console.log('[1]Connected to mongodb!'); | |
}); | |
mongoose.connection.on('error', function (err) { | |
console.error('[1]Mongoose default error: ' + err); | |
}); | |
mongoose.connection.on('disconnected', function () { | |
console.log('[1]Mongoose default connection disconnected'); | |
}); | |
process.on('SIGINT', function () { | |
mongoose.connection.close(function () { | |
console.log('[1]Mongoose default connection disconnected through app termination'); | |
}); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment