Example usage for org.apache.solr.handler RequestHandlerBase subclass-usage

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

Introduction

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

Usage

From source file alba.components.FilteredShowFileRequestHandler.java

/**
 * This handler uses the RawResponseWriter to give client access to
 * files inside ${solr.home}/conf
 * <p>
 * If you want to selectively restrict access some configuration files, you can list
 * these files in the {@link #HIDDEN} invariants.  For example to hide 

From source file alba.solr.searchcomponents.AlbaRequestHandler.java

public class AlbaRequestHandler extends RequestHandlerBase {

    private CallableFunction function;

    private String sectionName;

From source file com.basho.yokozuna.handler.EntropyData.java

/**
 * This class provides handler logic to iterate over the entropy data
 * stored in the index.  This data can be used to build a hash tree to
 * detect entropy.
 */
public class EntropyData extends RequestHandlerBase implements PluginInfoInitialized {

From source file com.search.MySearchHandler.java

/**
 * 
 * Refer SOLR-281
 * 
 */
public class MySearchHandler extends RequestHandlerBase implements SolrCoreAware, PluginInfoInitialized {

From source file com.search.MySearchHandlerTest.java

/**
 *
 * Refer SOLR-281
 *
 */
public class MySearchHandlerTest extends RequestHandlerBase implements SolrCoreAware, PluginInfoInitialized {

From source file com.searchbox.solr.CategoryLikeThis.java

/**
 * Solr MoreLikeThis --
 * <p/>
 * Return similar documents either based on a single document or based on posted
 * text.
 *

From source file com.searchbox.solr.SenseLikeThisHandler.java

/**
 * Solr MoreLikeThis --
 * <p/>
 * Return similar documents either based on a single document or based on posted
 * text.
 *

From source file com.searchbox.solr.SenseLikeThisHandlerNoReduction.java

/**
 * Solr MoreLikeThis --
 * <p/>
 * Return similar documents either based on a single document or based on posted
 * text.
 *

From source file com.searchbox.solr.SenseQueryHandler.java

/**
 *
 */
public class SenseQueryHandler extends RequestHandlerBase {

    private static final Logger LOGGER = LoggerFactory.getLogger(SenseQueryHandler.class);

From source file com.sindicetech.siren.solr.facet.FacetsPathsRequestHandler.java

/**
 * Request handler for facet browsers, it lists facets paths.
 * <p>
 * Add the following line to solrconfig.xml to enable it &lt;requestHandler name="/fprh"
 * class="com.sindicetech.siren.solr.fasets.FasetsPathsRequestHandler"/&gt;
 * </p>