Package | Description |
---|---|
org.apache.lucene.search |
Code to search indices.
|
Modifier and Type | Interface | Description |
---|---|---|
interface |
RMIRemoteSearchable |
Deprecated.
This package (all of contrib/remote) will be
removed in 4.0.
|
Modifier and Type | Class | Description |
---|---|---|
class |
AssertingIndexSearcher |
Helper class that adds some extra checks to ensure correct
usage of
IndexSearcher and Weight . |
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 to
IndexSearcher , 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 IndexSearcher
|
Modifier and Type | Method | Description |
---|---|---|
Searchable[] |
MultiSearcher.getSearchables() |
Deprecated.
Return the array of
Searchable s this searches. |
Constructor | Description |
---|---|
MultiSearcher(Searchable... searchables) |
Deprecated.
Creates a searcher which searches searchers.
|
ParallelMultiSearcher(ExecutorService executor,
Searchable... searchables) |
Deprecated.
Creates a
Searchable which searches searchables with the specified ExecutorService. |
ParallelMultiSearcher(Searchable... searchables) |
Deprecated.
Creates a
Searchable which searches searchables with the default
executor service (a cached thread pool). |
RemoteSearchable(Searchable local) |
Deprecated.
Constructs and exports a remote searcher.
|
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.