I'm working on a grails/mongodb project. I want to do a full text research on a mongodb database using:
db.test.runCommand( "text", { search : "my_texte" } )
The problem is that I didn't found how to do it in groovy (or using gmongo).
How do execute a "runCommand" from groovy ?
Thanks.