From bcd1f22af2ff4d38dab8af7db8d979489c5c1704 Mon Sep 17 00:00:00 2001 From: "David W. Dougherty" Date: Thu, 18 Jun 2026 08:35:06 -0700 Subject: [PATCH] DEV: Remove the score calculation limitation from the scoring page --- .../ai/search-and-query/advanced-concepts/scoring.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/content/develop/ai/search-and-query/advanced-concepts/scoring.md b/content/develop/ai/search-and-query/advanced-concepts/scoring.md index 6f08b5dccd..6a2adc7010 100644 --- a/content/develop/ai/search-and-query/advanced-concepts/scoring.md +++ b/content/develop/ai/search-and-query/advanced-concepts/scoring.md @@ -81,12 +81,6 @@ FT.SEARCH myIndex "foo" SCORER TFIDF.DOCNORM ## BM25STD (default) -{{< warning >}} -Deleting or replacing an indexed document can temporarily affect the scores of other documents that contain any of the same terms. -As a result, `FT.SEARCH` score values may be inaccurate until the Redis Search garbage collector runs and removes the stale term data. -{{< /warning >}} - - A variation on the basic `TFIDF` scorer, see [this Wikipedia article for more info](https://en.wikipedia.org/wiki/Okapi_BM25). The relevance score for each document is multiplied by the presumptive document score and a penalty is applied based on slop as in `TFIDF`.