Interface ParallelIndexStore
-
- All Superinterfaces:
AutoCloseable
,Closeable
,IndexStore
,Iterable<NodeStateEntry>
- All Known Implementing Classes:
TreeStore
public interface ParallelIndexStore extends IndexStore
A parallel store has the ability to "split itself" into multiple stores that each cover a subset of the content. This allows to index in parallel.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<IndexStore>
buildParallelStores(int parallelIndexingThreads)
-
Methods inherited from interface org.apache.jackrabbit.oak.index.indexer.document.indexstore.IndexStore
close, getEntryCount, getIndexStoreType, getStorePath, isIncremental, iterator, setEntryCount
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
buildParallelStores
Collection<IndexStore> buildParallelStores(int parallelIndexingThreads)
-
-