ng time. See the Solr
documentation, if you have a relatively recent one the payload support
has been built in to Solr, otherwise here's a primer:
https://lucidworks.com/2014/06/13/end-to-end-payload-example-in-solr/
Best,
Erick
On Thu, Sep 7, 2017 at 8:40 AM,
I need to do a bf exists query that matches the following conditions:
- IF a_score = 1 AND b_score = 2 THEN boost 30
- IF a_score = 3 AND b_score = 4 THEN boost 20
So far, the bf portion of my query looks like this:
if(exists(query({!v="a_score_is:1"})),30,0)
But I’m hav