Uses of Interface
org.hibernate.search.MassIndexer
Packages that use MassIndexer
-
Uses of MassIndexer in org.hibernate.search
Methods in org.hibernate.search that return MassIndexerModifier and TypeMethodDescriptionMassIndexer.batchSizeToLoadObjects(int batchSize) Deprecated.Sets the batch size used to load the root entities.MassIndexer.cacheMode(org.hibernate.CacheMode cacheMode) Deprecated.Sets the cache interaction mode for the data loading tasks.MassIndexer.idFetchSize(int idFetchSize) Deprecated.Specifies the fetch size to be used when loading primary keys if objects to be indexed.MassIndexer.limitIndexedObjectsTo(long maximum) Deprecated.EXPERIMENTAL method: will probably change Will stop indexing after having indexed a set amount of objects.MassIndexer.optimizeAfterPurge(boolean optimize) Deprecated.If index optimization should be run before starting, after the purgeAll.MassIndexer.optimizeOnFinish(boolean optimize) Deprecated.If index optimization has to be started at the end of the indexing process.MassIndexer.progressMonitor(MassIndexerProgressMonitor monitor) Deprecated.Override the defaultMassIndexerProgressMonitor.MassIndexer.purgeAllOnStart(boolean purgeAll) Deprecated.If all entities should be removed from the index before starting using purgeAll.MassIndexer.threadsForSubsequentFetching(int numberOfThreads) Deprecated.Being ignored: this method will be removed.MassIndexer.threadsToLoadObjects(int numberOfThreads) Deprecated.Set the number of threads to be used to load the root entities.MassIndexer.transactionTimeout(int timeoutInSeconds) Deprecated.Timeout of transactions for loading ids and entities to be re-indexed.MassIndexer.typesToIndexInParallel(int threadsToIndexObjects) Deprecated.Sets the number of entity types to be indexed in parallel. -
Uses of MassIndexer in org.hibernate.search.jpa
Methods in org.hibernate.search.jpa that return MassIndexerModifier and TypeMethodDescriptionFullTextEntityManager.createIndexer(Class<?>... types) Deprecated.Instead of using Hibernate Search 5 APIs, get aSearchSessionusingSearch.session(Session), then create a mass indexer withSearchSession.massIndexer(Class[]).