Решено!
-
Задайте server.socketoptions.keepAlive на 1 . Просто актуализирайте обекта с опции по следния начин:
options = { auto_reconnect: true, db: { w: 1 }, server: { socketOptions: { keepAlive: 1 } } };
-
Пинг на базата данни на редовни интервали. Ето един кодов фрагмент, който прави точно това:
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); };