List of usage examples for org.apache.solr.search QParser subclass-usage
From source file com.github.healthonnet.search.SynonymExpandingExtendedDismaxQParserPlugin.java
class SynonymExpandingExtendedDismaxQParser extends QParser { // delegate all our parsing to these two parsers - one for the "synonym" query and the other for the main query private ExtendedDismaxQParser synonymQueryParser; private ExtendedDismaxQParser mainQueryParser;
From source file com.ifactory.press.db.solr.search.ScoringParentQParser.java
class ScoringParentQParser extends QParser { /** implementation detail subject to change */ public String CACHE_NAME = "perSegFilter"; protected String getParentFilterLocalParamName() { return "which";
From source file com.indoqa.solr.spatial.corridor.query.route.RouteQueryParser.java
public class RouteQueryParser extends QParser { public RouteQueryParser(String qstr, SolrParams localParams, SolrParams params, SolrQueryRequest req) { super(qstr, localParams, params, req); }
From source file com.kmwllc.search.solr.parser.GraphQueryParser.java
/**
* Licensed KMW Technology LLC - All rights reserved.
*
* Solr query parser that will handle parsing graph query requests.
* it uses xstream to deserialize the query string into a graph query
* if possible.
From source file com.kmwllc.search.solr.parser.KMWQueryParser.java
/**
* Licensed KMW Technology LLC - All rights reserved.
*
* Solr query parser that will handle parsing graph query requests.
* it uses xstream to deserialize the query string into a graph query
* if possible.
From source file com.memonews.solr.search.HighlightQParserPlugin.java
class HighlightQParser extends QParser { private TreeSet<String> fieldNames; public HighlightQParser(String qstr, SolrParams localParams, SolrParams params, SolrQueryRequest req, TreeSet<String> fieldNames) {
From source file com.o19s.solr.swan.SwanQParser.java
public class SwanQParser extends QParser { private IndexSchema schema; public static ListMultimap<String, String> fieldAliases = ArrayListMultimap.create(); public SwanQParser(String qstr, SolrParams localParams, SolrParams params, SolrQueryRequest req,
From source file com.sindicetech.siren.solr.qparser.SirenQParser.java
/**
* The {@link SirenQParser} is in charge of parsing a SIREn query request.
* <p>
* Expand the query to multiple fields by constructing a disjunction of the
* parsed query across the fields.
* <p>
From source file com.tamingtext.qa.QuestionQParser.java
/** * The QuestionQParser takes in a natural language question and produces a Lucene {@link org.apache.lucene.search.spans.SpanNearQuery} * */ public class QuestionQParser extends QParser implements QAParams {
From source file com.wiseowl.WiseOwl.query.WiseOwlQParser.java
/** * The QuestionQParser takes in a natural language question and produces a Lucene {@link org.apache.lucene.search.spans.SpanNearQuery} * */ public class WiseOwlQParser extends QParser implements OWLParams { private transient static Logger log = LoggerFactory.getLogger(WiseOwlQParser.class);