Uses of Class
org.apache.lucene.monitor.CandidateMatcher
-
Packages that use CandidateMatcher Package Description org.apache.lucene.monitor Monitoring framework -
-
Uses of CandidateMatcher in org.apache.lucene.monitor
Subclasses of CandidateMatcher in org.apache.lucene.monitor Modifier and Type Class Description (package private) class
CollectingMatcher<T extends QueryMatch>
class
ParallelMatcher<T extends QueryMatch>
Matcher class that runs matching queries in parallel.class
PartitionMatcher<T extends QueryMatch>
A multi-threaded matcher that collects all possible matches in one pass, and then partitions them amongst a number of worker threads to perform the actual matching.Fields in org.apache.lucene.monitor declared as CandidateMatcher Modifier and Type Field Description private CandidateMatcher<T>
ParallelMatcher. collectorMatcher
(package private) CandidateMatcher<T>
Monitor.StandardQueryCollector. matcher
(package private) CandidateMatcher<T>
ParallelMatcher.MatcherWorker. matcher
(package private) CandidateMatcher<T>
PartitionMatcher.MatcherWorker. matcher
private CandidateMatcher<T>
PartitionMatcher. resolvingMatcher
Fields in org.apache.lucene.monitor with type parameters of type CandidateMatcher Modifier and Type Field Description private java.util.List<java.util.concurrent.Future<CandidateMatcher<T>>>
ParallelMatcher. futures
Methods in org.apache.lucene.monitor that return CandidateMatcher Modifier and Type Method Description CandidateMatcher<T>
ParallelMatcher.MatcherWorker. call()
CandidateMatcher<T>
MatcherFactory. createMatcher(IndexSearcher searcher)
Create a newCandidateMatcher
object, to select queries to match against the passed-in IndexSearcherMethods in org.apache.lucene.monitor with parameters of type CandidateMatcher Modifier and Type Method Description protected void
CandidateMatcher. copyMatches(CandidateMatcher<T> other)
Copy all matches from another CandidateMatcherConstructors in org.apache.lucene.monitor with parameters of type CandidateMatcher Constructor Description MatcherWorker(java.util.List<PartitionMatcher.MatchTask> tasks, CandidateMatcher<T> matcher)
PresearcherQueryCollector(CandidateMatcher<T> matcher)
StandardQueryCollector(CandidateMatcher<T> matcher)
-