fields that are indexed as UnStored

2005-04-20 Thread Omar Didi
Hi guys, If a field is indexed as UnStored how can I get it value? I tried document.get("UnStored_field") it returns null. thanks -Original Message- From: Kevin L. Cobb [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 20, 2005 8:52 AM To: java-user@lucene.apache.org Subject: RE: Best way

Re: fields that are indexed as UnStored

2005-04-20 Thread Chuck Williams
Omar Didi writes (4/20/2005 5:05 PM): Hi guys, If a field is indexed as UnStored how can I get it value? I tried document.get("UnStored_field") it returns null. You didn't store it, so it's not there. If the field happens to be a single Term, you might be able to find it in the index, expensiv

Re: fields that are indexed as UnStored

2005-04-21 Thread Andrzej Bialecki
Chuck Williams wrote: Omar Didi writes (4/20/2005 5:05 PM): Hi guys, If a field is indexed as UnStored how can I get it value? I tried document.get("UnStored_field") it returns null. You didn't store it, so it's not there. If the field happens to be a single Term, you might be able to find it