Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing unnecessary ByteArrayDataInput allocations by resetting inplace #14113

Merged
merged 4 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lucene/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ Improvements
* GITHUB#14079: Hunspell Dictionary now supports an option to tolerate REP rule count mismatches.
(Robert Muir)

* GITHUB#14113: Remove unnecessary ByteArrayDataInput allocations from `Lucene90DocValuesProducer$TermsDict.decompressBlock`. (Ankit Jain)

Optimizations
---------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1122,10 +1122,9 @@ private class TermsDict extends BaseTermsEnum {
final LongValues indexAddresses;
final RandomAccessInput indexBytes;
final BytesRef term;
final BytesRef blockBuffer;
final ByteArrayDataInput blockInput;
long ord = -1;

BytesRef blockBuffer = null;
ByteArrayDataInput blockInput = null;
long currentCompressedBlockStart = -1;
long currentCompressedBlockEnd = -1;

Expand All @@ -1149,6 +1148,7 @@ private class TermsDict extends BaseTermsEnum {
// add 7 padding bytes can help decompression run faster.
int bufferSize = entry.maxBlockLength + entry.maxTermLength + LZ4_DECOMPRESSOR_PADDING;
blockBuffer = new BytesRef(new byte[bufferSize], 0, bufferSize);
blockInput = new ByteArrayDataInput();
}

@Override
Expand Down Expand Up @@ -1324,8 +1324,7 @@ private void decompressBlock() throws IOException {
}

// Reset the buffer.
blockInput =
new ByteArrayDataInput(blockBuffer.bytes, blockBuffer.offset, blockBuffer.length);
blockInput.reset(blockBuffer.bytes, blockBuffer.offset, blockBuffer.length);
}
}

Expand Down
Loading