Skip to content

Commit 057cbf3

Browse files
authored
Use getAndSet, getAndClear instead split operations. (apache#13507)
1 parent 937c004 commit 057cbf3

File tree

5 files changed

+7
-14
lines changed

5 files changed

+7
-14
lines changed

lucene/core/src/java/org/apache/lucene/index/FreqProxTermsWriter.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,8 @@ private void applyDeletes(SegmentWriteState state, Fields fields) throws IOExcep
7070
state.liveDocs = new FixedBitSet(state.segmentInfo.maxDoc());
7171
state.liveDocs.set(0, state.segmentInfo.maxDoc());
7272
}
73-
if (state.liveDocs.get(doc)) {
73+
if (state.liveDocs.getAndClear(doc)) {
7474
state.delCountOnFlush++;
75-
state.liveDocs.clear(doc);
7675
}
7776
}
7877
}

lucene/core/src/java/org/apache/lucene/index/PendingDeletes.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,8 @@ boolean delete(int docID) throws IOException {
9797
+ info.info.name
9898
+ " maxDoc="
9999
+ info.info.maxDoc();
100-
final boolean didDelete = mutableBits.get(docID);
100+
final boolean didDelete = mutableBits.getAndClear(docID);
101101
if (didDelete) {
102-
mutableBits.clear(docID);
103102
pendingDeleteCount++;
104103
}
105104
return didDelete;

lucene/core/src/java/org/apache/lucene/index/PendingSoftDeletes.java

+3-6
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@ boolean delete(int docID) throws IOException {
5353
FixedBitSet mutableBits = getMutableBits();
5454
// hardDeletes
5555
if (hardDeletes.delete(docID)) {
56-
if (mutableBits.get(docID)) { // delete it here too!
57-
mutableBits.clear(docID);
56+
if (mutableBits.getAndClear(docID)) { // delete it here too!
5857
assert hardDeletes.delete(docID) == false;
5958
} else {
6059
// if it was deleted subtract the delCount
@@ -135,16 +134,14 @@ static int applySoftDeletes(DocIdSetIterator iterator, FixedBitSet bits) throws
135134
: null;
136135
while ((docID = iterator.nextDoc()) != DocIdSetIterator.NO_MORE_DOCS) {
137136
if (hasValue == null || hasValue.hasValue()) {
138-
if (bits.get(docID)) { // doc is live - clear it
139-
bits.clear(docID);
137+
if (bits.getAndClear(docID)) { // doc is live - clear it
140138
newDeletes++;
141139
// now that we know we deleted it and we fully control the hard deletes we can do correct
142140
// accounting
143141
// below.
144142
}
145143
} else {
146-
if (bits.get(docID) == false) {
147-
bits.set(docID);
144+
if (bits.getAndSet(docID) == false) {
148145
newDeletes--;
149146
}
150147
}

lucene/join/src/java/org/apache/lucene/search/join/PointInSetIncludingScoreQuery.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,7 @@ public void visit(int docID, byte[] packedValue) {
276276
if (cmp == 0) {
277277
// Query point equals index point, so collect and return
278278
if (multipleValuesPerDocument) {
279-
if (result.get(docID) == false) {
280-
result.set(docID);
279+
if (result.getAndSet(docID) == false) {
281280
scores[docID] = nextScore;
282281
}
283282
} else {

lucene/join/src/java/org/apache/lucene/search/join/TermsIncludingScoreQuery.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -281,9 +281,8 @@ protected void fillDocsAndScores(FixedBitSet matchingDocs, TermsEnum termsEnum)
281281
matchingDocs.set(doc);
282282
}*/
283283
// But this behaves the same as MVInnerScorer and only then the tests will pass:
284-
if (!matchingDocs.get(doc)) {
284+
if (!matchingDocs.getAndSet(doc)) {
285285
scores[doc] = score;
286-
matchingDocs.set(doc);
287286
}
288287
}
289288
}

0 commit comments

Comments
 (0)