NAME
Senna - Perl Interface To Senna Fulltext Search Engine
SYNOPSIS
use Senna;
my $index = Senna::Index->create(...);
# or $index = Senna::Index->open(...);
#
my $cursor = $index->search($query);
while (my $key = $cursor->next) {
print $key, " score = ", $cursor->score, "\n";
}
AUTHOR
Copyright (C) 2005 by Daisuke Maki <dmaki@cpan.org>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.
Development funded by Brazil Ltd. <http://dev.razil.jp/project/senna/>
SEE ALSO
http://dev.razil.jp/project/senna - Senna Development Homepage