You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2012/11/02 04:58:28 UTC

[Lucene-java Wiki] Update of "ReleaseNote41" by RobertMuir

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Lucene-java Wiki" for change notification.

The "ReleaseNote41" page has been changed by RobertMuir:
http://wiki.apache.org/lucene-java/ReleaseNote41?action=diff&rev1=2&rev2=3

Comment:
fuzzy suggester

   * Lucene no longer seeks when writing files (all fields are written in an append-only way). This 
     means it works by default with append-only streams, hdfs, etc.
  
-  * Added AnalyzingSuggester, where the underlying analyzed form (computed from a lucene Analyzer) 
+  * New suggest implementations: AnalyzingSuggester, where the underlying form 
-    used for suggestions is separate from the returned text. 
+    (computed from a lucene Analyzer) used for suggestions is separate from the returned text
-    (see http://blog.mikemccandless.com/2012/09/lucenes-new-analyzing-suggester.html)
+    (see http://blog.mikemccandless.com/2012/09/lucenes-new-analyzing-suggester.html), and
+    FuzzySuggester, which additionally allows for inexact matching on the input.
  
   * Added FilterStrategy to FilteredQuery for more flexibility in filtered query execution.