Package org.apache.lucene.search

Examples of org.apache.lucene.search.RemoteSearchable


          }
          if (searchers.size()>0) {
            Searcher[] searcherarraytype = new Searcher[searchers.size()];
          Searcher[] allsearchers = (searchers.toArray(searcherarraytype));
          Searcher searcher = new ParallelMultiSearcher(allsearchers);
          RemoteSearchable remoteSearchable = new RemoteSearchable(searcher);
          Naming.rebind("mailarchiva",remoteSearchable);
          }
        } catch (Exception e) {
          logger.error("failed to bind remote access searchables",e);
        }
View Full Code Here

TOP

Related Classes of org.apache.lucene.search.RemoteSearchable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.