1

我想使用 MongoDB 2.4 中提供的全文搜索。文本搜索可通过 runCommand 功能获得,例如db.collection.runCommand( "text", { search: "keywords"})。所以,我想知道在 mongojs 或 node-mongodb-native 模块中是否有等效于 runCommand() 函数。

我知道这个问题之前已经被触及,但从未得到充分的回答。提前致谢。

4

2 回答 2

1

我发现作为等价物:

collection.find({ $text: { $search : "your search words" }})
  .toArray(function(err,results) {
    // ..callback stuff..
});
于 2014-06-23T16:23:31.177 回答
0

添加了 runCommand 支持!https://github.com/gett/mongojs/issues/62

于 2013-06-24T12:22:56.913 回答