remove restriction on frequent one word names

This is now solved by reducing results with the windowing SQL
during search.
This commit is contained in:
Sarah Hoffmann 2024-04-02 16:28:17 +02:00
parent 424ebd7fe9
commit 9f42c3f3b8

View File

@ -227,8 +227,6 @@ class SearchBuilder:
name_fulls = self.query.get_tokens(name, TokenType.WORD)
if name_fulls:
fulls_count = sum(t.count for t in name_fulls)
if len(name_partials) == 1:
penalty += min(0.5, max(0, (exp_count - 50 * fulls_count) / (2000 * fulls_count)))
if partials_indexed:
penalty += 1.2 * sum(t.penalty for t in addr_partials if not t.is_indexed)