File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
codecs/src/java/org/apache/lucene/codecs/memory Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ API Changes
3131
3232* GITHUB#14844: Change IndexInput.updateReadAdvice to take an IOContext instead (Simon Cooper)
3333
34+ * GITHUB#12980: Make FSTPostingsFormat to build FST off-heap. This PostingsFormat will now
35+ create 2 FST files (tfp.meta and tfp.data) instead of a single one. (Anh Dung Bui)
36+
3437New Features
3538---------------------
3639* GITHUB#14097: Binary partitioning merge policy over float-valued vector field. (Mike Sokolov)
@@ -780,9 +783,6 @@ API Changes
780783
781784* GITHUB#12855: Remove deprecated DrillSideways#createDrillDownFacetsCollector extension method. (Greg Miller)
782785
783- * GITHUB#12980: Make FSTPostingsFormat to build FST off-heap. This PostingsFormat will now
784- create 2 FST files (tfp.meta and tfp.data) instead of a single one. (Anh Dung Bui)
785-
786786* GITHUB#12875: Ensure token position is always increased in PathHierarchyTokenizer and ReversePathHierarchyTokenizer
787787 and resulting tokens do not overlap. (Michael Froh, Lukáš Vlček)
788788
Original file line number Diff line number Diff line change 3131/** FST term dict + Lucene99PBF */
3232public final class FSTPostingsFormat extends PostingsFormat {
3333 public FSTPostingsFormat () {
34- super ("FST99 " );
34+ super ("FST110 " );
3535 }
3636
3737 @ Override
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ public void close() throws IOException {
206206 if (metaOut != null ) {
207207 assert dataOut != null ;
208208 try (IndexOutput _ = metaOut ;
209- IndexOutput __ = dataOut ;
209+ IndexOutput _ = dataOut ;
210210 postingsWriter ) { // write field summary
211211 final long dirStart = metaOut .getFilePointer ();
212212
You can’t perform that action at this time.
0 commit comments