I'm trying to use dart parse server in order to do a full-text search as explained here. So far as I understand, I have the falling 2 options if I want to do that:
- whereContainsWholeWord
- whereContains
In the case of the first one, I will search the whole database for that specific word, and for the second one, I will search the database for some partial word.
This is exactly what I need, but because the second search is going to utilize regex, this is going to be slow.
Is there any way to create an index for full-text search via the dart parse server, and afterward use some query on that index? Or this feature is not implemented yet, because I could not find anything in this regard in the document