Interface TextIndexReader
-
- All Superinterfaces:
AutoCloseable,Closeable
- All Known Subinterfaces:
MutableTextIndex
public interface TextIndexReader extends Closeable
-
-
Method Summary
Modifier and Type Method Description org.roaringbitmap.buffer.ImmutableRoaringBitmapgetDictIds(String searchQuery)Returns the matching dictionary ids for the given search query (optional).org.roaringbitmap.buffer.MutableRoaringBitmapgetDocIds(String searchQuery)Returns the matching document ids for the given search query.
-
-
-
Method Detail
-
getDictIds
org.roaringbitmap.buffer.ImmutableRoaringBitmap getDictIds(String searchQuery)
Returns the matching dictionary ids for the given search query (optional).
-
getDocIds
org.roaringbitmap.buffer.MutableRoaringBitmap getDocIds(String searchQuery)
Returns the matching document ids for the given search query.
-
-