Example usage for org.apache.lucene.search Scorer subclass-usage

List of usage examples for org.apache.lucene.search Scorer subclass-usage

Introduction

In this page you can find the example usage for org.apache.lucene.search Scorer subclass-usage.

Usage

From source file alba.solr.core.DynamicScorer.java

public class DynamicScorer extends Scorer {

    protected final LeafReader reader;
    private int doc = -1;
    protected final int maxDoc;
    //protected final FunctionValues values;

From source file com.browseengine.bobo.geosearch.query.GeoScorer.java

/**
 * @author Ken McCracken
 * @author shandets
 *
 */
public class GeoScorer extends Scorer {

From source file com.o19s.es.explore.ExplorerScorer.java

public class ExplorerScorer extends Scorer {
    private Scorer subScorer;
    private String type;

    protected ExplorerScorer(Weight weight, String type, Scorer subScorer) {
        super(weight);

From source file com.o19s.es.ltr.query.LtrScorer.java

/**
 * Created by doug on 12/24/16.
 */
public class LtrScorer extends Scorer {

    Ranker _rankModel;

From source file com.o19s.es.ltr.query.NoopScorer.java

/**
 * Created by doug on 2/3/17.
 */
public class NoopScorer extends Scorer {
    private final DocIdSetIterator _noopIter;

From source file com.senseidb.search.relevance.impl.CustomScorer.java

public class CustomScorer extends Scorer {
    private static Logger logger = Logger.getLogger(CustomScorer.class);
    final Scorer _innerScorer;
    private RuntimeRelevanceFunction _sModifier = null;

    public CustomScorer(Scorer innerScorer, BoboIndexReader boboReader, CustomMathModel cModel, DataTable _dt,

From source file com.sindicetech.siren.search.node.LuceneProxyNodeScorer.java

/**
 * The {@link Scorer} class that defines the interface for iterating
 * over an ordered list of documents matching a {@link NodeQuery}.
 */
class LuceneProxyNodeScorer extends Scorer {

From source file com.sindicetech.siren.search.node.NodeScorer.java

/**
 * The abstract {@link Scorer} class that defines the interface for iterating
 * over an ordered list of nodes matching a query.
 * <p>
 * Subclasses should implement {@link #docID()}, {@link #nextDoc()} and
 * {@link #advance(int)} for compatibility with {@link Scorer} if needed.

From source file com.xiaomi.linden.lucene.query.flexiblequery.FlexibleScorer.java

public class FlexibleScorer extends Scorer {

    private int numMatchedEnums;
    private int doc = -1;
    private TermDocsEnum[] matchedEnumsList;
    private MatchedInfoMatrix matchedInfoMatrix;

From source file de.uop.code.disambiguation.ltr.lucene.query.AbstractDisjunctionScorer.java

/**
 * Base class for Scorers that score disjunctions. Currently this just provides
 * helper methods to manage the heap.
 */
abstract class AbstractDisjunctionScorer extends Scorer {
    protected final LearnToRankClause ltrClauses[];