I have an object like this
{
"_id":2939399,
"name:"Lionel Messi"
}
want the searches: Lio, nel, ssi, Lionel, Mess, Lione, Messi, etc ... (All substrings that are more than 3 characters long) will yield me this result(Lionel Messi object)- how that can be achieved?
I have tried to put an index on the name field bit this works partially and gives me results only when I search Messi or Lionel..