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