MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Wie führe ich den Volltextsuchbefehl in MongoDB mit dem Java-Treiber aus?

Entnommen aus einem Beitrag in der Google-Gruppe ( 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);

Zeigt genau, wie der Befehl formatiert wird.