mirror of https://github.com/apache/lucene.git
LUCENE-8844: bump FST version and fix related CHANGES entry
This commit is contained in:
parent
7425044457
commit
a8478c790a
|
@ -40,6 +40,10 @@ Improvements
|
|||
* LUCENE-8770: BlockMaxConjunctionScorer now leverages two-phase iterators in order to avoid
|
||||
executing the second phase when scorers don't intersect. (Adrien Grand, Jim Ferenczi)
|
||||
|
||||
* LUCENE-8781: FST lookup performance has been improved in many cases by
|
||||
encoding Arcs using full-sized arrays with gaps. The new encoding is
|
||||
enabled for postings in the default codec and for suggesters. (Mike Sokolov)
|
||||
|
||||
* LUCENE-8757: When provided with an ExecutorService to run queries across
|
||||
multiple threads, IndexSearcher now groups small segments together, up to
|
||||
250k docs per slice. (Atri Sharma via Adrien Grand)
|
||||
|
|
|
@ -109,7 +109,7 @@ public final class FST<T> implements Accountable {
|
|||
// Increment version to change it
|
||||
private static final String FILE_FORMAT_NAME = "FST";
|
||||
private static final int VERSION_START = 6;
|
||||
private static final int VERSION_CURRENT = VERSION_START;
|
||||
private static final int VERSION_CURRENT = 7;
|
||||
|
||||
// Never serialized; just used to represent the virtual
|
||||
// final node w/ no arcs:
|
||||
|
|
Loading…
Reference in New Issue