最近在试着用bae来搭一个nodejs的server,database用免费的mongodb,用mongoose连接,但是会出现一段时间没请求会断掉会数据库的连接,然后一旦有请求进来就崩掉,bae的lightpd会重启server。
对此,我在models里的mongodb模块写了针对断线重连的处理,但是貌似不管用,请大家指教,代码如下:
var mongoose = require('mongoose');
mongoose.connect('mongodb://username:password@mongo.duapp.com/database', {server: {auto_reconnect:true]});
mongoose.connection.on('close', function(){
mongoose.connect('mongodb://username:password@mongo.duapp.com/database', {server: {auto_reconnect:true]});
});
exports.mongoose = mongoose;
感谢大家的解答!
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/131434
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.