KinoSearch::Search::Searchable - Base class for searchers.
# Abstract base class.
Base class for searchers.
Abstract base class for objects which search. Core subclasses include KinoSearch::Searcher and KinoSearch::Search::PolySearcher.
package MySearchable; use base qw( KinoSearch::Search::Searchable ); sub new { my $self = shift->SUPER::new; ... return $self; }
Abstract constructor.
Return a Hits object containing the top results.
offset to 20 and num_wanted to 10 retrieves
hits 21-30, assuming that 30 hits can be found.
offset is taken into account.
If the supplied object is a Query, return it; if it's a query string, create a QueryParser and parse it to produce a query against all indexed fields.
Accessor for the object's schema member.
Iterate over hits, feeding them into a HitCollector.
Return the maximum number of docs in the collection represented by the Searchable, which is also the highest possible internal doc id. Documents which have been marked as deleted but not yet purged are included in this count.
Return the number of documents which contain the term in the given field.
Retrieve a document. Throws an error if the doc id is out of range.
KinoSearch::Search::Searchable isa KinoSearch::Object::Obj.
Copyright 2005-2010 Marvin Humphrey
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.