Merge pull request #3346 from lonvia/reduce-artificial-importance

Reduce default importance
This commit is contained in:
Sarah Hoffmann
2024-02-28 14:21:46 +01:00
committed by GitHub
5 changed files with 5 additions and 5 deletions

View File

@@ -130,7 +130,7 @@ BEGIN
-- Still nothing? Fall back to a default.
IF result.importance is null THEN
result.importance := 0.75001 - (rank_search::float / 40);
result.importance := 0.40001 - (rank_search::float / 75);
END IF;
{% if 'secondary_importance' in db.tables %}