Skip to content

Instantly share code, notes, and snippets.

@tfm
Last active December 11, 2015 21:29
Show Gist options
  • Save tfm/4663094 to your computer and use it in GitHub Desktop.
Save tfm/4663094 to your computer and use it in GitHub Desktop.
DBObject command = BasicDBObjectBuilder
.start("text", "myCollection")
.append("search", query.getTerm())
.get();
CommandResult result = db.command(command);
BasicDBList results = (BasicDBList) result.get("results");
for(Object o : results) {
DBObject dbo = (DBObject) ((DBObject) o).get("obj");
String id = (String) dbo.get("_ID");
System.out.println(id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment