I would like to make use of $text and $search - which are available as indicated here by Evgene: https://getsatisfaction.com/apperyio/...
How do I ensure I am searching on a text index and how do I create a text index that contains two or more columns?
Is there an example that could be provided that shows how to make this work?
I would like to make this function correctly:
http://docs.mongodb.org/manual/refere...
db.articles.find(
{ $text: { $search: "cake" } },
{ score: { $meta: "textScore" } }
).sort( { score: { $meta: "textScore" } } )