mirror of https://github.com/apache/lucene.git
Optimization: call System.arraycopy instead of manual for loop copying
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@476110 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2b1dd87818
commit
7e3c1bfb0d
|
@ -221,6 +221,9 @@ Optimizations
|
|||
queries involving term positions, including phrase queries.
|
||||
(Michael Busch via Yonik Seeley)
|
||||
|
||||
12. LUCENE-714: Replaced 2 cases of manual for-loop array copying
|
||||
with calls to System.arraycopy instead, in DocumentWriter.java.
|
||||
(Nicolas Lalevee via Mike McCandless)
|
||||
|
||||
Test Cases
|
||||
1. Added TestTermScorer.java (Grant Ingersoll)
|
||||
|
|
|
@ -206,8 +206,7 @@ final class DocumentWriter {
|
|||
if (ti.positions.length == freq) { // positions array is full
|
||||
int[] newPositions = new int[freq * 2]; // double size
|
||||
int[] positions = ti.positions;
|
||||
for (int i = 0; i < freq; i++) // copy old positions to new
|
||||
newPositions[i] = positions[i];
|
||||
System.arraycopy(positions, 0, newPositions, 0, freq);
|
||||
ti.positions = newPositions;
|
||||
}
|
||||
ti.positions[freq] = position; // add new position
|
||||
|
@ -216,10 +215,7 @@ final class DocumentWriter {
|
|||
if (ti.offsets.length == freq){
|
||||
TermVectorOffsetInfo [] newOffsets = new TermVectorOffsetInfo[freq*2];
|
||||
TermVectorOffsetInfo [] offsets = ti.offsets;
|
||||
for (int i = 0; i < freq; i++)
|
||||
{
|
||||
newOffsets[i] = offsets[i];
|
||||
}
|
||||
System.arraycopy(offsets, 0, newOffsets, 0, freq);
|
||||
ti.offsets = newOffsets;
|
||||
}
|
||||
ti.offsets[freq] = offset;
|
||||
|
|
Loading…
Reference in New Issue