We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 142cd38 commit 87677a9Copy full SHA for 87677a9
solr/core/src/java/org/apache/solr/search/facet/BitmapFrequencyCounter.java
@@ -65,12 +65,10 @@ public void add(int value) {
65
bitmap = bitmaps[i] = new RoaringBitmap();
66
}
67
68
- if (!bitmap.contains(value)) {
+ if (!bitmap.checkedRemove(value)) {
69
bitmap.add(value);
70
return;
71
72
-
73
- bitmap.remove(value);
74
75
76
// If we reach this point, the frequency of this value is >= 2^(bitmaps.length)
@@ -234,7 +232,7 @@ public BitmapFrequencyCounter merge(BitmapFrequencyCounter other) {
234
232
int freq = 1 << bitmaps.length;
235
233
236
for (int k = 0; k < bitmaps.length; k++) {
237
- if (bitmaps[j].contains(value)) {
+ if (bitmaps[j].checkedRemove(value)) {
238
freq += 1 << k;
239
240
0 commit comments