我想使用 MongoDB 2.4 中提供的全文搜索。文本搜索可通过 runCommand 功能获得,例如db.collection.runCommand( "text", { search: "keywords"})
。所以,我想知道在 mongojs 或 node-mongodb-native 模块中是否有等效于 runCommand() 函数。
我知道这个问题之前已经被触及,但从未得到充分的回答。提前致谢。
我想使用 MongoDB 2.4 中提供的全文搜索。文本搜索可通过 runCommand 功能获得,例如db.collection.runCommand( "text", { search: "keywords"})
。所以,我想知道在 mongojs 或 node-mongodb-native 模块中是否有等效于 runCommand() 函数。
我知道这个问题之前已经被触及,但从未得到充分的回答。提前致谢。
我发现作为等价物:
collection.find({ $text: { $search : "your search words" }})
.toArray(function(err,results) {
// ..callback stuff..
});
添加了 runCommand 支持!https://github.com/gett/mongojs/issues/62