I have the following request
db.Profiles.find({ "$text" : { "$search" : "vk" } })
This gives me the following result:
{ "_id" : ObjectId("55e999a5bd1f3926586799bb"), "created" : ISODate("2015-09-04T13:16:21.555Z"), "userId" : 4790, "email" : " vk@mydomain.com ", "firstName" : "", "lastName" : "", "phoneNumber" : "", "isUnsubscribed" : false, "isAboveLimit" : true, "status" : 0, "userAgent" : 0, "isDeleted" : false, "p2l" : [ { "listId" : 31613, "status" : 25, "subscriptionDate" : ISODate("2015-09-17T14:04:33.660Z") } ], "countryId" : 0, "cf" : [] }
But the following:
db.Profiles.find({ "$text" : { "$search" : "v" }})
No results.
source share