Return-Path: X-Original-To: apmail-lucy-user-archive@www.apache.org Delivered-To: apmail-lucy-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5C5B110C50 for ; Thu, 19 Sep 2013 00:26:22 +0000 (UTC) Received: (qmail 80405 invoked by uid 500); 19 Sep 2013 00:26:22 -0000 Delivered-To: apmail-lucy-user-archive@lucy.apache.org Received: (qmail 80381 invoked by uid 500); 19 Sep 2013 00:26:22 -0000 Mailing-List: contact user-help@lucy.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@lucy.apache.org Delivered-To: mailing list user@lucy.apache.org Received: (qmail 80373 invoked by uid 99); 19 Sep 2013 00:26:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Sep 2013 00:26:22 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of leegee@gmail.com designates 209.85.215.169 as permitted sender) Received: from [209.85.215.169] (HELO mail-ea0-f169.google.com) (209.85.215.169) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Sep 2013 00:26:16 +0000 Received: by mail-ea0-f169.google.com with SMTP id k11so3866540eaj.0 for ; Wed, 18 Sep 2013 17:25:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:reply-to:user-agent:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=+EGf9Oe5yz7cFec1JlHOsGkaArqp4ERcD9v1usif57M=; b=qSGvs52MBFREPHeW9OMDUg2bPWNB61mWXi1GLp0ARngG5LuPDnOoagAgyY63EZnbBS 0KUZzwYpMFuK3AUfJfxyTf22Rj3kJ4Vu6T3xFcKSu2AyRjn2mvIQgn9NsqVbllBlb2iw 9UnoPrpn3yV4733ltkuYdPQMBCZek64tSFCsFp+9+PBu/dF4BX2+G7sJNRunKcmS7y2d Wpg4jQKic8ew1hjc1w126R5zMXkkOWJy9LuT/GB9qR4T50ImrvCnTlMebWMo9KfL0Qq+ lsbjzIooFWTPYJM7cLPh0yusBXbIqNMpkBAWVcEC5Hyx+Y6CdIPVkjLx8JBXlE4XZ4YN UP3Q== X-Received: by 10.14.183.2 with SMTP id p2mr24183624eem.44.1379550354950; Wed, 18 Sep 2013 17:25:54 -0700 (PDT) Received: from Lee-Goddards-MacBook-Pro.local (catv-37-188-82-157.catv.broadband.hu. [37.188.82.157]) by mx.google.com with ESMTPSA id i1sm7049759eeg.0.1969.12.31.16.00.00 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 18 Sep 2013 17:25:54 -0700 (PDT) Message-ID: <523A4493.1060609@gmail.com> Date: Thu, 19 Sep 2013 02:25:55 +0200 From: Lee Reply-To: lee@leegoddard.net User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:17.0) Gecko/20130801 Thunderbird/17.0.8 MIME-Version: 1.0 To: user@lucy.apache.org References: <5239A690.7020601@leegoddard.net> <523A06CB.1040505@peknet.com> <523A2582.3030205@gmail.com> In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org Subject: Re: [lucy-user] All entries? 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 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 >