Thanks — I'll try that too.
Lee
On 19/09/2013 01:16, Marvin Humphrey wrote:
On Wed, Sep 18, 2013 at 3:13 PM, Lee <[email protected]> wrote:
Ah, DocReader in the Synopsis
Lucy::Search::MatchAllQuery might be another possibility.
my $searcher = Lucy::Search::IndexSearcher->new(
index => '/path/to/index',
);
my $hits = $searcher->hits(
query => Lucy::Search::MatchAllQuery->new,
num_wanted => $searcher->doc_max,
);
while (my $hit = $hits->next) {
print "$hit->{title}\n";
}
It's really hard to Google a common word like Lucy, ironically.
Yeah, I sometimes have more luck with 'apache lucy'.
Marvin Humphrey