Uses of Class
org.apache.lucene.search.TaskExecutor
-
Packages that use TaskExecutor Package Description org.apache.lucene.codecs.lucene99 Lucene 9.9 file format.org.apache.lucene.search Code to search indices.org.apache.lucene.util.hnsw Navigable Small-World graph, nominally Hierarchical but currently only has a single layer. -
-
Uses of TaskExecutor in org.apache.lucene.codecs.lucene99
Fields in org.apache.lucene.codecs.lucene99 declared as TaskExecutor Modifier and Type Field Description private TaskExecutor
Lucene99HnswScalarQuantizedVectorsFormat. mergeExec
private TaskExecutor
Lucene99HnswVectorsFormat. mergeExec
private TaskExecutor
Lucene99HnswVectorsWriter. mergeExec
Constructors in org.apache.lucene.codecs.lucene99 with parameters of type TaskExecutor Constructor Description Lucene99HnswVectorsWriter(SegmentWriteState state, int M, int beamWidth, FlatVectorsWriter flatVectorWriter, int numMergeWorkers, TaskExecutor mergeExec)
-
Uses of TaskExecutor in org.apache.lucene.search
Fields in org.apache.lucene.search declared as TaskExecutor Modifier and Type Field Description private TaskExecutor
IndexSearcher. taskExecutor
Methods in org.apache.lucene.search that return TaskExecutor Modifier and Type Method Description TaskExecutor
IndexSearcher. getTaskExecutor()
Returns theTaskExecutor
that this searcher relies on to execute concurrent operations -
Uses of TaskExecutor in org.apache.lucene.util.hnsw
Fields in org.apache.lucene.util.hnsw declared as TaskExecutor Modifier and Type Field Description private TaskExecutor
ConcurrentHnswMerger. taskExecutor
private TaskExecutor
HnswConcurrentMergeBuilder. taskExecutor
Constructors in org.apache.lucene.util.hnsw with parameters of type TaskExecutor Constructor Description ConcurrentHnswMerger(FieldInfo fieldInfo, RandomVectorScorerSupplier scorerSupplier, int M, int beamWidth, TaskExecutor taskExecutor, int numWorker)
HnswConcurrentMergeBuilder(TaskExecutor taskExecutor, int numWorker, RandomVectorScorerSupplier scorerSupplier, int M, int beamWidth, OnHeapHnswGraph hnsw, BitSet initializedNodes)
-