Uses of Class
org.apache.lucene.search.IndexSearcher

Packages that use IndexSearcher
org.apache.lucene.benchmark.byTask
Benchmarking Lucene By Tasks. 
org.apache.lucene.demo   
org.apache.lucene.index Code to maintain and access indices. 
org.apache.lucene.index.memory High-performance single-document main memory Apache Lucene fulltext search index. 
org.apache.lucene.search Code to search indices. 
 

Uses of IndexSearcher in org.apache.lucene.benchmark.byTask
 

Methods in org.apache.lucene.benchmark.byTask that return IndexSearcher
 IndexSearcher PerfRunData.getIndexSearcher()
           
 

Uses of IndexSearcher in org.apache.lucene.demo
 

Methods in org.apache.lucene.demo with parameters of type IndexSearcher
static void SearchFiles.doPagingSearch(BufferedReader in, IndexSearcher searcher, Query query, int hitsPerPage, boolean raw, boolean interactive)
          This demonstrates a typical paging search scenario, where the search engine presents pages of size n to the user.
 

Uses of IndexSearcher in org.apache.lucene.index
 

Methods in org.apache.lucene.index that return IndexSearcher
 IndexSearcher NRTManager.get()
          Returns the most current searcher.
 IndexSearcher NRTManager.get(boolean requireDeletes)
          Just like NRTManager.get(), but by passing false for requireDeletes, you can get faster reopen time, but the returned reader is allowed to not reflect all deletions.
 IndexSearcher NRTManager.get(long targetGen)
          Call this if you require a searcher reflecting all changes as of the target generation.
 IndexSearcher NRTManager.get(long targetGen, boolean requireDeletes)
          Call this if you require a searcher reflecting all changes as of the target generation, and you don't require deletions to be reflected.
 

Methods in org.apache.lucene.index with parameters of type IndexSearcher
 void NRTManager.release(IndexSearcher s)
          Release the searcher obtained from NRTManager.get() or NRTManager.get(long).
 

Uses of IndexSearcher in org.apache.lucene.index.memory
 

Methods in org.apache.lucene.index.memory that return IndexSearcher
 IndexSearcher MemoryIndex.createSearcher()
          Creates and returns a searcher that can be used to execute arbitrary Lucene queries and to collect the resulting query results as hits.
 

Uses of IndexSearcher in org.apache.lucene.search
 

Fields in org.apache.lucene.search declared as IndexSearcher
protected  IndexSearcher[] IndexSearcher.subSearchers
           
 



Copyright © 2000-2011 Apache Software Foundation. All Rights Reserved.