From 4567b21e79f70cebf4ceae637c9349cf98984732 Mon Sep 17 00:00:00 2001 From: Caleb Allen Date: Mon, 30 Mar 2026 02:56:02 -0400 Subject: [PATCH] tweak: bump starts-with tier bonus from +8% to +12% MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Starts-with is the natural type-ahead pattern — users type the beginning of the name they want. Bumped from +8% to +12% to put it closer to exact match (+15%) while maintaining a clear gap from substring (-5%). --- backend/explore/explore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/explore/explore.go b/backend/explore/explore.go index efe5116..d2db277 100644 --- a/backend/explore/explore.go +++ b/backend/explore/explore.go @@ -910,7 +910,7 @@ const ( //nolint:gochecknoglobals var tierBonus = map[int]float64{ 0: 0.15, // exact match: +15% - 1: 0.08, // starts with: +8% + 1: 0.12, // starts with: +12% 2: -0.05, // substring (query buried in name): -5% 3: -0.15, // no substring match: -15% }