-
-
Notifications
You must be signed in to change notification settings - Fork 689
Closed
Labels
Description
In the fullTextSearch.js example, searching is done using this query:
db.emails.where("messageWords").startsWithIgnoreCase("v").distinct().toArray(function (a) {
However, it is only possible to search for one word in messageWords with this query. Is there a way to use this for multi-word search queries? I'm trying to search very large documents, so Collection.filter is not fast enough.
Reactions are currently unavailable