6

Mongo と Java の達人。私たちのチームは、最近 MongoDB に導入された全文検索 API を使用することにしました。ただし、Java MongoDB ドライバーを使用してコマンドを実行すると、いくつかの問題が発生することがわかりました。

ここに私が使用している私のコードがあります:

public BasicDBObject find(String search) {
    BasicDBObject searchCommand = new BasicDBObject();

        searchCommand.put("text", new BasicDBObject().append("search", search));

        CommandResult commandResult = db.command(searchCommand);
}

印刷するとこんな感じ

 System.out.println(commandResult) 

{ "serverUsed" : "/127.0.0.1:27017" , "errmsg" : "exception: wrong type for field (text) 3 != 2" , "code" : 13111 , "ok" : 0.0 }
4

1 に答える 1

11

Google グループの投稿から引用 ( https://groups.google.com/forum/?fromgroups#!topic/mongodb-user/7jWUbunUcFQ ):

    final DBObject textSearchCommand = new BasicDBObject();
    textSearchCommand.put("text", collectionName);
    textSearchCommand.put("search", textToSearchFor);
    final CommandResult commandResult = db.command(textSearchCommand);

コマンドをフォーマットする方法を正確に示します。

于 2013-04-08T12:40:33.507 に答える