NAME
FlatQueryParser - Simple query parser, with no boolean operators.
SYNOPSIS
my $searcher = KinoSearch::Search::IndexSearcher->new(
index => '/path/to/index'
);
my $parser = FlatQueryParser->new( $searcher->get_schema );
my $query = $parser->parse($query_string);
my $hits = $searcher->hits( query => $query );
...
DESCRIPTION
See KinoSearch::Docs::Cookbook::CustomQueryParser.
COPYRIGHT AND LICENSE
Copyright 2008-2011 Marvin Humphrey
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.