MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Comment exécuter la commande de recherche en texte intégral dans MongoDB avec Java Driver ?

Tiré d'un post sur le groupe 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);

Montre exactement comment formater la commande.