From 94c2468d2ceca7407dd24c15636b3bed78b35e3d Mon Sep 17 00:00:00 2001 From: Edwin Kempin Date: Wed, 14 May 2014 16:10:54 +0200 Subject: [PATCH] List most important bug fixes for secondary index in 2.9 release notes Change-Id: I07559df83042931c092f248e7424e3c90a27ece8 Signed-off-by: Edwin Kempin --- ReleaseNotes/ReleaseNotes-2.9.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/ReleaseNotes/ReleaseNotes-2.9.txt b/ReleaseNotes/ReleaseNotes-2.9.txt index 1dd7da2a1b..52a5330ec4 100644 --- a/ReleaseNotes/ReleaseNotes-2.9.txt +++ b/ReleaseNotes/ReleaseNotes-2.9.txt @@ -311,6 +311,21 @@ Bug Fixes --------- +Secondary Index +~~~~~~~~~~~~~~~ + +* Fix Online Reindexing + +* Fix for full-text search with Lucene ++ +The full-text search was using a fuzzy query which used the edit +distance to find terms in the index close to the provided search term. +This produced bizarre results for queries like "message:1234". ++ +Instead, use Lucene's QueryBuilder with an analyzer to convert a +full-text search word/phrase into a phrase query. + + Upgrades --------