You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With a scale factor of 1, using an attribute based search optimizer with "logarithmic" scale function reduces the fulltext score of products to 0.
That is because the "missing" value is "1 / $scaleFactor", the field_value_factor with the "log" function ends up being 1 * log(1) (scaleFactor * log(fieldValue)) :
With a scale factor of 1, using an attribute based search optimizer with "logarithmic" scale function reduces the fulltext score of products to 0.
That is because the "missing" value is "1 /
$scaleFactor
", the field_value_factor with the "log" function ends up being1 * log(1)
(scaleFactor * log(fieldValue)
) :Since
log(1) = 0
and the boost function is applied inmultiply
mode, it multiplies the fulltext_score
to 0 :Preconditions
Magento Version : EE 2.3.x
ElasticSuite Version : 2.8.x
Environment : Developer/Production
Third party modules : N/A
Steps to reproduce
Expected result
Actual result
The text was updated successfully, but these errors were encountered: