From c91c3afd8700138f8eb8a25a4ae422c2c9e46cea Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 28 Jul 2026 17:37:06 +0200 Subject: refactored entire code base to be in the package core so i can later implement interfaces to interact with the engine --- core/scoring/field.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 core/scoring/field.go (limited to 'core/scoring/field.go') diff --git a/core/scoring/field.go b/core/scoring/field.go new file mode 100644 index 0000000..89f6132 --- /dev/null +++ b/core/scoring/field.go @@ -0,0 +1,10 @@ +package scoring + +import "searchEngine/core/index" + +var TitleWeight = 5.0 +var BodyWeight = 1.0 + +func FieldScore(p index.Posting) float64 { + return (float64(p.TitleCount) * TitleWeight) + (float64(p.BodyCount) * BodyWeight) +} -- cgit v1.2.3