Re: Query terms and the match state

2019-09-08 Thread Scott Stults
Lucene has a SynonymQuery and a BlendedTermQuery that do something like you want in different ways. However, if you want to keep your existing schema and do this through Solr you can use the constant score syntax in edismax on each term: q=name:(corsair)^=1.0 name:(ddr)^=1.0 manu:(corsair)^=1.0 ma

Query terms and the match state

2019-09-03 Thread Kumaresh AK
Hello Solr Community! *Problem*: I wish to know if the result document matched all the terms in the query. The ranking used in solr works most of the time. For some cases where one of the term is rare and occurs in couple of fields; such documents trump a document which matches all the terms. Idea