Is there any explanation of how `text_match` is co...
# community-help
j
Is there any explanation of how
text_match
is computed somewhere, or some way to make it more interpretable? I get scores like
565161851289602
which is quite opaque 😅
k
The score is a single int64 integer that's composed from several byte-wise text relevancy "components". The major bit is calculated here: https://github.com/typesense/typesense/blob/main/include/match_score.h#L53
🙌 1