Class RawQParserPlugin

  • All Implemented Interfaces:
    SolrInfoBean, NamedListInitializedPlugin

    public class RawQParserPlugin
    extends QParserPlugin
    Create a term query from the input value without any text analysis or transformation whatsoever. This is useful in debugging, or when raw terms are returned from the terms component (this is not the default).
    For easy filter construction to drill down in faceting, the TermQParserPlugin is recommended.
    For full analysis on all fields, including text fields, see the FieldQParserPlugin.
    Other parameters: f, the field
    Example: {!raw f=myfield}Foo Bar creates TermQuery(Term("myfield","Foo Bar"))