
KinoSearch::Search::SortRule - Element of a SortSpec.

The KinoSearch code base has been assimilated by the Apache Lucy project. The "KinoSearch" namespace has been deprecated, but development continues under our new name at our new home: http://lucy.apache.org/

my $sort_spec = KinoSearch::Search::SortSpec->new(
rules => [
KinoSearch::Search::SortRule->new( field => 'date' ),
KinoSearch::Search::SortRule->new( type => 'doc_id' ),
],
);

SortRules are the building blocks used to assemble SortSpecs; each SortRule defines a single level of sorting. For example, sorting first by "category" then by score requires a SortSpec with two SortRule elements.

my $by_title = KinoSearch::Search::SortRule->new( field => 'title' );
my $by_score = KinoSearch::Search::SortRule->new( type => 'score' );
my $by_doc_id = KinoSearch::Search::SortRule->new( type => 'doc_id' );
my $reverse_date = KinoSearch::Search::SortRule->new(
field => 'date',
reverse => 1,
);
sortable field.
Accessor for "field" member.
Accessor for "reverse" member.

KinoSearch::Search::SortRule isa KinoSearch::Object::Obj.

Copyright 2005-2011 Marvin Humphrey
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.