You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to specify a query that can search on all the fields? Am I thinking about it in right way? I have been able to do so in elasticsearch. Also looking at tantivy wikipedia example it seems we should be able to do it.
The text was updated successfully, but these errors were encountered:
How do you currently do it in elastic? Like what kind of query do you run, I don't think you are thinking about it wrong, but I Just want to make sure.
We can definitely talk about what functionality might look like then.
Currently when searching we need to provide the fields we explicitly need to search for. e.g.
{ "query": { "term": { "lyrics": "cool" } }, "limit": 10 }
Is it possible to specify a query that can search on all the fields? Am I thinking about it in right way? I have been able to do so in elasticsearch. Also looking at tantivy wikipedia example it seems we should be able to do it.
The text was updated successfully, but these errors were encountered: