Hi, sombody has an example how to do a full test search with java driver and cfmongodb:
in the mongo console I made the index and the search below works well. But I did not find a way to use the search query with CFMongoDB,.It adds the score metadata to the result and sorts it.
db.companies.find({$text: {$search: "bank"}}, {score: {$meta: "textScore"}}).sort({score:{$meta:"textScore"}})
thanks,