I was wondering how to interpret boost query. I know if a document has a match on a boost like bq=name:"bob"^5
then it will be given a higher ranking, but in general if you have many terms with different fields what happens when a given document field doesn't match the value?
Is this term in the bq just "dropped" and ignored? Is this to say if you had something like bq=name:"bob"^5 location:"Boston"2
but only name matched on a document then it would receive a score of 5, but a score of 7 if both matched? I've read the docs but I'm still having trouble making sense of this.
Thanks for any insight!