Uses of Interface
org.apache.lucene.util.IORunnable
Packages that use IORunnable
Package
Description
Codecs API: API for customization of the encoding and structure of the index.
HNSW vector helper classes.
Lucene 9.9 file format.
Block KD-tree, implementing the generic spatial data structure described in this paper.
-
Uses of IORunnable in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return IORunnableModifier and TypeMethodDescriptionBufferingKnnVectorsWriter.mergeOneField(FieldInfo fieldInfo, MergeState mergeState) KnnVectorsWriter.mergeOneField(FieldInfo fieldInfo, MergeState mergeState) Merges vectors for a single field, returning a runnable for any deferred work (e.g., HNSW graph construction). -
Uses of IORunnable in org.apache.lucene.codecs.hnsw
Methods in org.apache.lucene.codecs.hnsw that return IORunnableModifier and TypeMethodDescriptionfinal IORunnableFlatVectorsWriter.mergeOneField(FieldInfo fieldInfo, MergeState mergeState) -
Uses of IORunnable in org.apache.lucene.codecs.lucene99
Methods in org.apache.lucene.codecs.lucene99 that return IORunnableModifier and TypeMethodDescriptionLucene99HnswVectorsWriter.mergeOneField(FieldInfo fieldInfo, MergeState mergeState) -
Uses of IORunnable in org.apache.lucene.util.bkd
Methods in org.apache.lucene.util.bkd that return IORunnableModifier and TypeMethodDescriptionBKDWriter.finish(IndexOutput metaOut, IndexOutput indexOut, IndexOutput dataOut) Writes the BKD tree to the providedIndexOutputs and returns aRunnablethat writes the index of the tree if at least one point has been added, ornullotherwise.BKDWriter.merge(IndexOutput metaOut, IndexOutput indexOut, IndexOutput dataOut, List<MergeState.DocMap> docMaps, List<PointValues> readers) More efficient bulk-add for incomingPointValuess.BKDWriter.writeField(IndexOutput metaOut, IndexOutput indexOut, IndexOutput dataOut, String fieldName, MutablePointTree reader) Write a field from aMutablePointTree.