> db.test.findOne()
{
"_id" : ObjectId("53bc2c6bd519a03e56d6906d"),
"title" : "Fancy Sneakers",
"desc" : "Really nice sneakers that are fashionable and will make other people jealous",
"details" : {
"detail" : "white with blue stripes and orange laces"
}
}> db.test.ensureIndex({"title":"text", "desc":"text", "details.detail":"text"})
{
"createdCollectionAutomatically" : false,
"numIndexesBefore" : 1,
"numIndexesAfter" : 2,
"ok" : 1
}
> db.test.find({$text:{$search:"white"}}).pretty()
{
"_id" : ObjectId("53bc2c6bd519a03e56d6906d"),
"title" : "Fancy Sneakers",
"desc" : "Really nice sneakers that are fashionable and will make other people jealous",
"details" : {
"detail" : "white with blue stripes and orange laces"
}
}
> db.test.ensureIndex({"$**":"text"})
{
"createdCollectionAutomatically" : false,
"numIndexesBefore" : 1,
"numIndexesAfter" : 2,
"ok" : 1
}