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
We have an Umbraco v8 site which has been upgraded to Umbraco v13 recently, and we've noticed that the search results are quite different.
After inspecting the query that is created in V8 and V13, it looks like the fuzziness is only applied to the first search term, however this is set to 1 rather than 0.9:
We have an Umbraco v8 site which has been upgraded to Umbraco v13 recently, and we've noticed that the search results are quite different.
After inspecting the query that is created in V8 and V13, it looks like the fuzziness is only applied to the first search term, however this is set to 1 rather than 0.9:
v13
Query = {+(subTitle_cy:designated~1 subTitle_cy:sites~0 subTitle_en:designated~1 subTitle_en:sites~0 title_cy:designated~1 title_cy:sites~0 title_en:designated~1 title_en:sites~0)}
v8
Query = {+(subTitle_cy:designated~0.9 subTitle_en:designated~0.9 title_cy:designated~0.9 title_en:designated~0.9) (subTitle_cy:sites~0.9 subTitle_en:sites~0.9 title_cy:sites~0.9 title_en:sites~0.9)}
Here is the relevant code for when the IBooleanOperation is built:
If we inspect the IExamineValues after adding the fuzziness, we can see that the value is set correctly:
{Examine.Search.ExamineValue} Examineness: Fuzzy Level: 0.9 Value: "sites"
However once the "GroupedOr" is executed it them seems to disregard this and results in the query result above.
The text was updated successfully, but these errors were encountered: