解決しました!
-
server.socketoptions.keepAliveを1に設定 。次のようにオプションオブジェクトを更新するだけです:
options = { auto_reconnect: true, db: { w: 1 }, server: { socketOptions: { keepAlive: 1 } } };
-
定期的にデータベースにpingを実行します。これを正確に実行するコードスニペットは次のとおりです。
printEventCount = function() { db.collection("IOSEvents").count(function(err, numberOfEvents) { console.log(new Date() + ": error = " + err + ", number of events = " + numberOfEvents); ping(); }); }; ping = function() { if (config.pingPeriod === 0) return; setTimeout(printEventCount, config.pingPeriod); };