List most important bug fixes for secondary index in 2.9 release notes

Change-Id: I07559df83042931c092f248e7424e3c90a27ece8
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
Edwin Kempin
2014-05-14 16:10:54 +02:00
parent a6b8f9b72a
commit 94c2468d2c

View File

@@ -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
--------