gpt4 book ai didi

java - 使用 MongoDB runCommand 方法

转载 作者:可可西里 更新时间:2023-11-01 10:01:13 26 4
gpt4 key购买 nike

如何使用MongoDB的runCommand方法?

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

最佳答案

你可以试试这个:

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);

关于java - 使用 MongoDB runCommand 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17361136/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com