Examples of PagedGrowableWriter


Examples of org.apache.lucene.util.packed.PagedGrowableWriter

                    firstOrdinals.set(docID, ordinal + 1);
                    return 1;
                } else {
                    final long newSlice = newSlice(1);
                    if (firstNextLevelSlices == null) {
                        firstNextLevelSlices = new PagedGrowableWriter(firstOrdinals.size(), PAGE_SIZE, 3, acceptableOverheadRatio);
                    }
                    firstNextLevelSlices.set(docID, newSlice);
                    final long offset = startOffset(1, newSlice);
                    ordinals[1].set(offset, ordinal + 1);
                    positions.set(docID, position(1, offset)); // current position is on the 1st level and not allocated yet
                    return 2;
                }
            } else {
                int level = level(position);
                long offset = offset(position, level);
                assert offset != 0L;
                if (((offset + 1) & slotsMask(level)) == 0L) {
                    // reached the end of the slice, allocate a new one on the next level
                    final long newSlice = newSlice(level + 1);
                    if (nextLevelSlices[level] == null) {
                        nextLevelSlices[level] = new PagedGrowableWriter(sizes[level], PAGE_SIZE, 1, acceptableOverheadRatio);
                    }
                    nextLevelSlices[level].set(sliceID(level, offset), newSlice);
                    ++level;
                    offset = startOffset(level, newSlice);
                    assert (offset & slotsMask(level)) == 0L;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.