提问者:小点点

升级mongo搜索从runCommand找到使用Java驱动程序


我正在使用一个Java驱动程序来运行一些mongo文本搜索。我以前的代码的一个例子是(其中值是传入的字符串):

DBCollection coll = db.getCollection("testCollection");
//create the basic object
DBObject searchCmd = new BasicDBObject();
//create the search cmd
searchCmd.put("text", "testCollection"); // the name of the collection (string)
// define the search word
searchCmd.put("search", value); // the term to search for (string)
// define the return values
searchCmd.put("project", new BasicDBObject("score", 1).append("name", 1).append("path", 0).append("_id", 0));
// get the results
BasicDBObject commandResult = db.command(searchCmd);
// Just out the results key
BasicDBList results = (BasicDBList) commandResult.get("results");

然后我遍历“结果”,得到每一个分数

// Get the number ii
BasicDBObject element = (BasicDBObject) results.get(ii);
// Now get the score
double score = (double) element.get("score");

我想升级到使用查找,因为这似乎是2.6和更高版本更喜欢的方式。到目前为止,我有:

DBCollection coll = db.getCollection("testCollection");
BasicDBObject query = new BasicDBObject();
query.append("$text", new BasicDBObject("$search", value));
DBCursor cursor = coll.find(query);

然而,我不确定如何得到分数。我试着做一些事情,比如:

query. append("score",new BasicDBObject("$meta","extScore"));

但这不起作用。我希望能够获得名称和分数,以便我可以将它们插入到一个也将保存分数的新集合中。

我可以通过以下方式轻松获得名称:

while (cursor.hasNext()) 
{
DBObject next = cursor.next();
String name = next.get("name").toString();
}

但是我怎么得到分数呢?


共1个答案

匿名用户

我发现了这个有趣的页面:http://api.mongodb.org/java/current/

看来查找可以采用具有字段的第二个DBObject。

我创建了一个新对象:

BasicDBObject fields = new BasicDBObject();
fields.append("score", new BasicDBObject("$meta", "textScore"));

我正在使用以下方式调用查找:

DBCursor cursor = coll.find(query, fields);

现在我可以像得到名字一样得到分数。