RE: Attribute Search

2001-11-26 Thread New, Cecil (GEAE)
[mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 2:51 PM To: Lucene Users List Subject: Re: Attribute Search Paula, I came across a tutorial which had some details on the static factory Field methods. But none of the factory methods return a Field object with the following settings

RE: Attribute Search

2001-11-26 Thread Doug Cutting
From: New, Cecil (GEAE) [mailto:[EMAIL PROTECTED]] this is exactly what I was doing. Store=false, index=true, and token=false. It appeared to work ok, but searches *never* returned any hits. That's why I suspect it is a bug. If you think this is a bug, please submit a test case, as

Re: Attribute Search

2001-11-21 Thread Cecil, Paula New
. - Original Message - From: Emmanuel Bridonneau [EMAIL PROTECTED] To: 'Lucene Users List' [EMAIL PROTECTED] Sent: Tuesday, November 20, 2001 4:12 PM Subject: RE: Attribute Search Did you check w/FAQ 26 on searching? http://www.lucene.com/cgi-bin/faq/faqmanager.cgi?file=chapter.searchtoc

RE: Attribute Search

2001-11-21 Thread Emmanuel Bridonneau
New [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 1:08 PM To: Lucene Users List Subject: Re: Attribute Search I came across a tutorial which had some details on the static factory Field methods. But none of the factory methods return a Field object with the following settings

Re: Attribute Search

2001-11-21 Thread Ype Kingma
Paula, I came across a tutorial which had some details on the static factory Field methods. But none of the factory methods return a Field object with the following settings: Store = false Index = true Tokenize = false I'm beginning to think this is a bug - that this combination is handled

RE: Attribute Search

2001-11-19 Thread Emmanuel Bridonneau
I am new here too but here's my 2 cents. If you don't tokenize your db textvalues, what do you say will be the resulting terms indexed? I think not what you expect. Your non tokenized fields probably are not filtered out hence a lastname like 'Smith' will not be a hit if the query is 'smith' the