2

我想从 MongoDB 集合中获取最后 5 个文档,然后继续跟踪它以获取新文档。这可以通过一个查询来完成,还是我真的需要两个查询?如果有两个查询,那么在不添加额外字段的情况下实现此目的的最佳方法是什么?

虽然任何语言的答案都很好,但这是我尝试实现的示例node.js代码片段(省略了错误处理,并根据问题的第一个答案编辑了片段):

MongoClient.connect("mongodb://localhost:1338/mydb", function(err, db) {
  db.collection('mycollection', function(err, col) {
    col.count({}, function(err, total) {
      col.find({}, { tailable:true, awaitdata:true, timeout:false, skip:total-5, limit:5 }, function(err, cursor) {
        cursor.each(function(err, doc) { 
          console.dir(doc); // print the document object to console
        });
      });
    });
  });
});

问题:上面的代码从第一个开始打印所有文档,然后等待更多。选项skiplimit没有效果。

问题:如何轻松获取最新的5篇文档,然后继续关注更多?任何语言的示例都可以,不必是node.js

4

1 回答 1

1

(答案已编辑,知道这不适用于这些版本很有用。)

如果集合不可尾,您需要找出有多少项目,用于该用途count,然后使用skip选项,以跳过第一个 count-5 项目。

这不起作用,也不能一起工作(MongoDB 2.4.6,node.js 0.10.18):tailableskip

MongoClient.connect("mongodb://localhost:1338/mydb", function(err, db) {
  db.collection('mycollection', function(err, col) {
    col.count({ }, function(err, total) {
      col.find({ }, { tailable: true, awaitdata: true, timeout: false, skip: total - 5, limit: 5 }, function(err, cursor) {
        cursor.each(function(err, doc) { 
          console.dir(doc); 
        });
      });
    });
  });
});
于 2013-09-17T13:35:54.103 回答