Full Text Index with Partial Keyword Search

We are trying to implement fulltext index on collection but it is not working with partial keywords search.
Create index syntax : db.collection.createIndex({ “$**”: “text”} ,{ default_language: “none”})
Search syntax : db.collection.find({ $text: { $search: “mumbai” } })

Hi @Hitesh_Chouhan, I’d recommend using a $search index over the $text index. It’s far more performant and customizable. You can quickly achieve what you are looking for as well with it. See this tutorial for a walkthrough.