⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 indexsearcher.java

📁 Lucene a java open-source SearchEngine Framework
💻 JAVA
字号:
package org.apache.lucene.search;/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements.  See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License.  You may obtain a copy of the License at * *     http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */import org.apache.lucene.document.Document;import org.apache.lucene.document.FieldSelector;import org.apache.lucene.index.CorruptIndexException;import org.apache.lucene.index.IndexReader;import org.apache.lucene.index.Term;import org.apache.lucene.store.Directory;import java.io.IOException;import java.util.BitSet;/** Implements search over a single IndexReader. * * <p>Applications usually need only call the inherited {@link #search(Query)} * or {@link #search(Query,Filter)} methods. For performance reasons it is  * recommended to open only one IndexSearcher and use it for all of your searches. *  * <p>Note that you can only access Hits from an IndexSearcher as long as it is * not yet closed, otherwise an IOException will be thrown.  */public class IndexSearcher extends Searcher {  IndexReader reader;  private boolean closeReader;  /** Creates a searcher searching the index in the named directory.   * @throws CorruptIndexException if the index is corrupt   * @throws IOException if there is a low-level IO error   */  public IndexSearcher(String path) throws CorruptIndexException, IOException {    this(IndexReader.open(path), true);  }  /** Creates a searcher searching the index in the provided directory.   * @throws CorruptIndexException if the index is corrupt   * @throws IOException if there is a low-level IO error   */  public IndexSearcher(Directory directory) throws CorruptIndexException, IOException {    this(IndexReader.open(directory), true);  }  /** Creates a searcher searching the provided index. */  public IndexSearcher(IndexReader r) {    this(r, false);  }    private IndexSearcher(IndexReader r, boolean closeReader) {    reader = r;    this.closeReader = closeReader;  }  /** Return the {@link IndexReader} this searches. */  public IndexReader getIndexReader() {    return reader;  }  /**   * Note that the underlying IndexReader is not closed, if   * IndexSearcher was constructed with IndexSearcher(IndexReader r).   * If the IndexReader was supplied implicitly by specifying a directory, then   * the IndexReader gets closed.   */  public void close() throws IOException {    if(closeReader)      reader.close();  }  // inherit javadoc  public int docFreq(Term term) throws IOException {    return reader.docFreq(term);  }  // inherit javadoc  public Document doc(int i) throws CorruptIndexException, IOException {    return reader.document(i);  }    // inherit javadoc  public Document doc(int i, FieldSelector fieldSelector) throws CorruptIndexException, IOException {	    return reader.document(i, fieldSelector);  }    // inherit javadoc  public int maxDoc() throws IOException {    return reader.maxDoc();  }  // inherit javadoc  public TopDocs search(Weight weight, Filter filter, final int nDocs)       throws IOException {    if (nDocs <= 0)  // null might be returned from hq.top() below.      throw new IllegalArgumentException("nDocs must be > 0");    TopDocCollector collector = new TopDocCollector(nDocs);    search(weight, filter, collector);    return collector.topDocs();  }  // inherit javadoc  public TopFieldDocs search(Weight weight, Filter filter, final int nDocs,                             Sort sort)      throws IOException {    TopFieldDocCollector collector =      new TopFieldDocCollector(reader, sort, nDocs);    search(weight, filter, collector);    return (TopFieldDocs)collector.topDocs();  }  // inherit javadoc  public void search(Weight weight, Filter filter,                     final HitCollector results) throws IOException {    HitCollector collector = results;    if (filter != null) {      final BitSet bits = filter.bits(reader);      collector = new HitCollector() {          public final void collect(int doc, float score) {            if (bits.get(doc)) {                  // skip docs not in bits              results.collect(doc, score);            }          }        };    }    Scorer scorer = weight.scorer(reader);    if (scorer == null)      return;    scorer.score(collector);  }  public Query rewrite(Query original) throws IOException {    Query query = original;    for (Query rewrittenQuery = query.rewrite(reader); rewrittenQuery != query;         rewrittenQuery = query.rewrite(reader)) {      query = rewrittenQuery;    }    return query;  }  public Explanation explain(Weight weight, int doc) throws IOException {    return weight.explain(reader, doc);  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -