Uses of Class
org.apache.lucene.search.SearcherFactory
-
Packages that use SearcherFactory Package Description org.apache.lucene.monitor Monitoring frameworkorg.apache.lucene.search Code to search indices. -
-
Uses of SearcherFactory in org.apache.lucene.monitor
Subclasses of SearcherFactory in org.apache.lucene.monitor Modifier and Type Class Description (package private) class
TermsHashBuilder
-
Uses of SearcherFactory in org.apache.lucene.search
Fields in org.apache.lucene.search declared as SearcherFactory Modifier and Type Field Description private SearcherFactory
SearcherManager. searcherFactory
Methods in org.apache.lucene.search with parameters of type SearcherFactory Modifier and Type Method Description static IndexSearcher
SearcherManager. getSearcher(SearcherFactory searcherFactory, IndexReader reader, IndexReader previousReader)
Expert: creates a searcher from the providedIndexReader
using the providedSearcherFactory
.Constructors in org.apache.lucene.search with parameters of type SearcherFactory Constructor Description SearcherManager(DirectoryReader reader, SearcherFactory searcherFactory)
Creates and returns a new SearcherManager from an existingDirectoryReader
.SearcherManager(IndexWriter writer, boolean applyAllDeletes, boolean writeAllDeletes, SearcherFactory searcherFactory)
Expert: creates and returns a new SearcherManager from the givenIndexWriter
, controlling whether past deletions should be applied.SearcherManager(IndexWriter writer, SearcherFactory searcherFactory)
Creates and returns a new SearcherManager from the givenIndexWriter
.SearcherManager(Directory dir, SearcherFactory searcherFactory)
Creates and returns a new SearcherManager from the givenDirectory
.
-