0

我正在研究将 mongodb 用于 pub-sub 模型。我浏览了不同的文章,例如http://tugdualgrall.blogspot.fr/2015/01/how-to-create-pubsub-application-with.htmlhttps://jpaljasma.blogspot.com/2013/11/howto- mongodb-tailable-cursors-in-nodejs.html

numberOfRetriescursor. 如果我设置该选项{'numberOfRetries': -1},这将确保光标不会超时?这意味着即使将文档添加到集合中存在很长的延迟,我也能够将任何新文档插入到上限集合中?

谢谢。

4

1 回答 1

0

您可以设置光标标志,特别是noCursorTimeout标志:

let cursor = collection.find({}, ...).addCursorFlag('noCursorTimeout', true);
于 2017-04-28T08:51:40.630 回答