NAME

Lucy::Search::QueryParser - Transform a string into a Query object.

SYNOPSIS

    my $query_parser = Lucy::Search::QueryParser->new(
        schema => $searcher->get_schema,
        fields => ['body'],
    );
    my $query = $query_parser->parse( $query_string );
    my $hits  = $searcher->hits( query => $query );

DESCRIPTION

QueryParser accepts search strings as input and produces Lucy::Search::Query objects, suitable for feeding into IndexSearcher and other Searcher subclasses.

The following syntactical constructs are recognized by QueryParser:

    * Boolean operators 'AND', 'OR', and 'AND NOT'.
    * Prepented +plus and -minus, indicating that the labeled entity
      should be either required or forbidden -- be it a single word, a
      phrase, or a parenthetical group.
    * Logical groups, delimited by parentheses.
    * Phrases, delimited by double quotes.

Additionally, the following syntax can be enabled via set_heed_colons():

    * Field-specific constructs, in the form of 'fieldname:termtext' or
      'fieldname:(foo bar)'.  (The field specified by 'fieldname:' will be
      used instead of the QueryParser's default fields).

CONSTRUCTORS

new( [labeled params] )

    my $query_parser = Lucy::Search::QueryParser->new(
        schema         => $searcher->get_schema,    # required
        analyzer       => $analyzer,                # overrides schema
        fields         => ['bodytext'],             # default: indexed fields
        default_boolop => 'AND',                    # default: 'OR'
    );

Constructor.

METHODS

parse(query_string)

Build a Query object from the contents of a query string. At present, implemented internally by calling tree(), expand(), and prune().

Returns: a Query.

tree(query_string)

Parse the logical structure of a query string, building a tree comprised of Query objects. Leaf nodes in the tree will most often be LeafQuery objects but might be MatchAllQuery or NoMatchQuery objects as well. Internal nodes will be objects which subclass PolyQuery: ANDQuery, ORQuery, NOTQuery, and RequiredOptionalQuery.

The output of tree() is an intermediate form which must be passed through expand() before being used to feed a search.

Returns: a Query.

expand(query)

Walk the hierarchy of a Query tree, descending through all PolyQuery nodes and calling expand_leaf() on any LeafQuery nodes encountered.

Returns: A Query -- usually the same one that was supplied after in-place modification, but possibly another.

expand_leaf(query)

Convert a LeafQuery into either a TermQuery, a PhraseQuery, or an ORQuery joining multiple TermQueries/PhraseQueries to accommodate multiple fields. LeafQuery text will be passed through the relevant Analyzer for each field. Quoted text will be transformed into PhraseQuery objects. Unquoted text will be converted to either a TermQuery or a PhraseQuery depending on how many tokens are generated.

Returns: A Query.

prune(query)

Prevent certain Query structures from returning too many results. Query objects built via tree() and expand() can generate "return the world" result sets, such as in the case of NOT a_term_not_in_the_index; prune() walks the hierarchy and eliminates such branches.

     'NOT foo'               => [NOMATCH]
     'foo OR NOT bar'        => 'foo'
     'foo OR (-bar AND -baz) => 'foo'

prune() also eliminates some double-negative constructs -- even though such constructs may not actually return the world:

     'foo AND -(-bar)'      => 'foo'

In this example, safety is taking precedence over logical consistency. If you want logical consistency instead, call tree() then expand(), skipping prune().

Returns: a Query; in most cases, the supplied Query after in-place modification.

set_heed_colons(heed_colons)

Enable/disable parsing of fieldname:foo constructs.

make_term_query( [labeled params] )

Factory method creating a TermQuery.

Returns: A Query.

make_phrase_query( [labeled params] )

Factory method creating a PhraseQuery.

Returns: A Query.

make_and_query(children)

Factory method creating an ANDQuery.

Returns: A Query.

make_or_query(children)

Factory method creating an ORQuery.

Returns: A Query.

make_not_query(negated_query)

Factory method creating a NOTQuery.

Returns: A Query.

make_req_opt_query( [labeled params] )

Factory method creating a RequiredOptionalQuery.

Returns: A Query.

INHERITANCE

Lucy::Search::QueryParser isa Lucy::Object::Obj.