running into a strange case where i have ``` ...
# community-help
h
running into a strange case where i have
Copy code
'text_match_info': {'best_field_score': '1108091339008',
                               'best_field_weight': 13}]}
and my match is on
event_title
, but my
event_title
weight is specified as
15
in my query params - so why is best_field_weight 13? this happens when using
max_score
. the documentation says
Only when several fields match the query equally, we use the field weights to decide which document should be prioritized.
, but then what's the purpose of
best_field_weight
? i understand how field_score can be kind of a blackbox, but is best_field_weight too?