使用MongoDB runCommand方法

时间:2013-06-28 09:10:11

标签: java mongodb

如何使用MongoDB runCommand方法?

我正在使用db.col.runCommand("text",{search:"searchword"})从MongoDB控制台进行全文搜索。但是我想在Java中使用这个命令,任何人都可以建议我如何在Java中使用它吗?

1 个答案:

答案 0 :(得分:4)

你可以试试这个:

DBObject searchCmd = new BasicDBObject();
searchCmd.put("text", collection); // the name of the collection (string)
searchCmd.put("search", query); // the term to search for (string)
CommandResult commandResult = db.command(searchCmd);