David Parks
David Parks

Reputation: 32111

Solr: document boosting - can it be disabled at query time?

If I've given a boost value for documents at index time, can I disable/ignore that boost value with a query parameter?

I have one type of query where I explicitly want to ignore the document boost value, but the rest should utilize it.

Upvotes: 2

Views: 266

Answers (1)

Jayendra
Jayendra

Reputation: 52809

You can define multiple request handler with different boost and invoke the same depending upon the Query.
This handling needs to be done at client side before querying Solr.

Upvotes: 1

Related Questions