Rozwiązany!
-
Ustaw server.socketoptions.keepAlive na 1 . Po prostu zaktualizuj obiekt opcji w następujący sposób:
options = { auto_reconnect: true, db: { w: 1 }, server: { socketOptions: { keepAlive: 1 } } };
-
Pinguj bazę danych w regularnych odstępach czasu. Oto fragment kodu, który dokładnie to robi:
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); };