Return-Path: Delivered-To: apmail-lucene-general-archive@www.apache.org Received: (qmail 13116 invoked from network); 8 Feb 2006 21:11:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 8 Feb 2006 21:11:35 -0000 Received: (qmail 53108 invoked by uid 500); 8 Feb 2006 21:11:13 -0000 Delivered-To: apmail-lucene-general-archive@lucene.apache.org Received: (qmail 53005 invoked by uid 500); 8 Feb 2006 21:11:12 -0000 Mailing-List: contact general-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: general@lucene.apache.org Delivered-To: mailing list general@lucene.apache.org Received: (qmail 52990 invoked by uid 99); 8 Feb 2006 21:11:12 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Feb 2006 13:11:12 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [69.55.225.129] (HELO ehatchersolutions.com) (69.55.225.129) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Feb 2006 13:11:11 -0800 Received: by ehatchersolutions.com (Postfix, from userid 504) id B41A333D2D6; Wed, 8 Feb 2006 16:10:50 -0500 (EST) Received: from [128.143.167.108] (d-128-167-108.bootp.Virginia.EDU [128.143.167.108]) by ehatchersolutions.com (Postfix) with ESMTP id 4FDC033D2D6 for ; Wed, 8 Feb 2006 16:10:49 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v746.2) In-Reply-To: <20060208201332.320FA10FB013@asf.osuosl.org> References: <20060208201332.320FA10FB013@asf.osuosl.org> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <4656688D-DCB1-48BC-8E8A-A3DEC49F4A64@ehatchersolutions.com> Content-Transfer-Encoding: 7bit From: Erik Hatcher Subject: Re: In which cases will be words completely ignored? Date: Wed, 8 Feb 2006 16:10:43 -0500 To: general@lucene.apache.org X-Mailer: Apple Mail (2.746.2) X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on javelina X-Spam-Level: X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.0.1 X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N It all depends on the Analyzer being used for both indexing and searching if you're using QueryParser. Send us the details of some sample text and it's analyzer output and you'll understand clearly. Look up my articles at java.net and/or Lucene in Action (www.lucenebook.com). Analyzers are a lot of fun! Erik On Feb 8, 2006, at 3:13 PM, Zsolt wrote: > Hi, > > I have a strange problem: I have the impression that in some cases > (but not > always) sometime words will be completely ignored. > > I read plain text files and store most of them with: > ... Field.UnStored("text", string); > > Does lucene really index everything? I understand that some English > words > are ignored (but they are always ignored). > > I use lucene-1.4.3 under tomcat-5.5.15. > > Zsolt > > >