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.
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.