Example usage for org.apache.solr.handler.component SearchComponent subclass-usage

List of usage examples for org.apache.solr.handler.component SearchComponent subclass-usage

Introduction

In this page you can find the example usage for org.apache.solr.handler.component SearchComponent subclass-usage.

Usage

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

public abstract class DynamicSearchComponent extends SearchComponent implements ISolrLightPlugin {

    @SuppressWarnings("rawtypes")
    private NamedList initParams;

    private ResponseBuilder responseBuilder;

From source file com.billiger.solr.handler.component.QLTBComponent.java

/**
 * Query-Local Term Boost component.
 *
 * This component inserts boosted terms into the SOLR query depending
 * on the query string.
 *

From source file com.cominvent.solr.RequestSanitizerComponent.java

/**
 * SearchComponent plugin for Solr 6.x. Will probably also work for 5.x
 * but needs Java 8 installed.
 * <p><b>Usage:</b></p>
 * <p>Add the <code>sanitize</code> request parameter in solrconfig.xml. Examples:<br/>
 * <dl>

From source file com.doculibre.constellio.solr.handler.component.ConstellioAuthorizationComponent.java

/**
 * A component to elevate some documents to the top of the result set.
 * 
 * @version $Id: ConstellioElevationComponent.java 949888 2010-05-31 23:24:40Z hossman $
 * @since solr 1.3
 */

From source file com.doculibre.constellio.solr.handler.component.SearchLogComponent.java

/**
 * A SearchComponent implementation which provides support for generate log
 * index.
 * 
 * 
 * @since solr 1.3

From source file com.frank.search.common.PagerComponent.java

/**
 * PagerComponent Provides simple and fast paging for SOLR results
 *
 * @version 0.2.0 SamB $
 * @since solr 1.4
 */

From source file com.indoqa.solr.spatial.clustering.SpatialClusteringComponent.java

public class SpatialClusteringComponent extends SearchComponent implements PluginInfoInitialized {

    private static final String FIELD_NAME_ID = "fieldId";
    private static final String FIELD_NAME_LON = "fieldLon";
    private static final String FIELD_NAME_LAT = "fieldLat";

From source file com.memonews.solr.handler.component.HighlightQueryComponent.java

/**
 * This search component takes all given query terms and parse them with the
 * <code>HighlightQParser</code> and sets the highlight query directly on the
 * <code>ResponseBuilder</code>.
 * 
 * A fielded term is defined by the field name followed by a colon ":" and then

From source file com.nominanuda.solr.SingletonSolrAware.java

public class SingletonSolrAware extends SearchComponent implements SolrCoreAware {
    private static CoreContainer coreContainer;
    private static volatile SingletonSolrAware INSTANCE;
    private Map<String, EmbeddedSolrServer> serverMap = new HashMap<String, EmbeddedSolrServer>();
    private CloseHook closeHook = new CloseHook() {
        @Override

From source file com.nominanuda.solr.SolrAware.java

public class SolrAware extends SearchComponent implements SolrCoreAware {
    private SingletonSolrAware singletonSolrAware = SingletonSolrAware.getInstance();

    public static SolrAware getInstance() {
        return new SolrAware();
    }