Class SearcherFactory

java.lang.Object
org.apache.lucene.search.SearcherFactory

public class SearcherFactory extends Object
Factory class used by SearcherManager to create new IndexSearchers. The default implementation just creates an IndexSearcher with no custom behavior:
   public IndexSearcher newSearcher(IndexReader r) throws IOException {
     return new IndexSearcher(r);
   }
 
You can pass your own factory instead if you want custom behavior, such as:
  • Constructor Details

    • SearcherFactory

      public SearcherFactory()
  • Method Details