Uses of Interface
org.apache.lucene.search.Searchable
-
Packages that use Searchable Package Description org.apache.lucene.search Code to search indices. -
-
Uses of Searchable in org.apache.lucene.search
Subinterfaces of Searchable in org.apache.lucene.search Modifier and Type Interface Description interface
RMIRemoteSearchable
Deprecated.This package (all of contrib/remote) will be removed in 4.0.Classes in org.apache.lucene.search that implement Searchable Modifier and Type Class Description class
AssertingIndexSearcher
Helper class that adds some extra checks to ensure correct usage ofIndexSearcher
andWeight
.static class
CheckHits.ExplanationAssertingSearcher
an IndexSearcher that implicitly checks hte explanation of every match whenever it executes a search.class
IndexSearcher
Implements search over a single IndexReader.class
MultiSearcher
Deprecated.If you are using MultiSearcher over IndexSearchers, please use MultiReader instead; this class does not properly handle certain kinds of queries (see LUCENE-2756).class
ParallelMultiSearcher
Deprecated.Please pass an ExecutorService toIndexSearcher
, instead.class
RemoteSearchable
Deprecated.This package (all of contrib/remote) will be removed in 4.0.class
Searcher
Deprecated.In 4.0 this abstract class is removed/absorbed into IndexSearcherMethods in org.apache.lucene.search that return Searchable Modifier and Type Method Description Searchable[]
MultiSearcher. getSearchables()
Deprecated.Return the array ofSearchable
s this searches.Constructors in org.apache.lucene.search with parameters of type Searchable Constructor Description MultiSearcher(Searchable... searchables)
Deprecated.Creates a searcher which searches searchers.ParallelMultiSearcher(ExecutorService executor, Searchable... searchables)
Deprecated.Creates aSearchable
which searches searchables with the specified ExecutorService.ParallelMultiSearcher(Searchable... searchables)
Deprecated.Creates aSearchable
which searches searchables with the default executor service (a cached thread pool).RemoteSearchable(Searchable local)
Deprecated.Constructs and exports a remote searcher.
-