the-algorithm/src/java/com/twitter/search/earlybird/index/DocValuesHelper.java
Rajiv Ranjan Singh 86c4e8c3e5 optimize DocValuesHelper.java
Signed-off-by: Rajiv Ranjan Singh <rajivperfect007@gmail.com>
2023-04-01 09:57:09 +05:30

70 lines
2.5 KiB
Java

package com.twitter.search.earlybird.index;
import java.io.IOException;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import org.apache.lucene.index.LeafReader;
import org.apache.lucene.index.Terms;
import org.apache.lucene.index.TermsEnum;
import org.apache.lucene.search.DocIdSetIterator;
import org.apache.lucene.util.BytesRef;
public final class DocValuesHelper {
private static final Map<String, TermsEnum> termsEnumCache = new ConcurrentHashMap<>();
private DocValuesHelper() {
}
/**
* Reverse lookup. Given a value, returns the first doc ID with this value. This requires a field
* that indexes the values.
*
* @param reader The reader to use to look up field values.
* @param value The value to lookup.
* @param indexField The field containing an index of the values.
*/
public static int getFirstDocIdWithValue(
LeafReader reader, String indexField, BytesRef value) throws IOException {
try (DocIdSetIterator docsIterator = getTermsEnum(reader, indexField).postings(null)) {
int docId = docsIterator.nextDoc();
return docId == DocIdSetIterator.NO_MORE_DOCS ? docId : docId;
}
}
/**
* Reverse lookup. Same as getFirstDocIdWithValue(), but if no document with the given value
* exists, the next bigger value is used for looking up the first doc ID.
*
* If there are multiple documents that match the value, all documents will be scanned, and the
* largest doc ID that matches will be returned.
*
* @param reader The reader to use to look up field values.
* @param value The value to lookup.
* @param indexField The field containing an index of the values.
*/
public static int getLargestDocIdWithCeilOfValue(
LeafReader reader, String indexField, BytesRef value) throws IOException {
try (DocIdSetIterator docsIterator = getTermsEnum(reader, indexField).postings(null)) {
int docId = docsIterator.nextDoc();
while (docsIterator.nextDoc() != DocIdSetIterator.NO_MORE_DOCS) {
docId = docsIterator.docID();
}
return docId;
}
}
private static TermsEnum getTermsEnum(LeafReader reader, String indexField) throws IOException {
TermsEnum termsEnum = termsEnumCache.get(indexField);
if (termsEnum == null) {
Terms terms = reader.terms(indexField);
if (terms == null) {
return null;
}
termsEnum = terms.iterator();
termsEnumCache.put(indexField, termsEnum);
}
return termsEnum;
}
}