Re: INDEXREADER + MAXDOC

2005-01-04 Thread Erik Hatcher
On Jan 4, 2005, at 5:19 AM, Karthik N S wrote:
On using the integer number of  Indexreader.maxDoc() API ,
Is it possible to get the VALUES from the varoius  fieldtypes.
ex:-   'docs.get(contents)  at  IndexReader.maxdoc()'

If so How...??
Just to be sure I understand... you want the last document in the 
index?  IndexReader.document(n) will give you this.

Erik
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: INDEXREADER + MAXDOC

2005-01-04 Thread Karthik N S
Hi Erik

Apologies...

  I would like to EXTRACT the DATA from the various fields of the Last
Document [as u said ]

  Ex: at IndexReader.maxDoc = 100

  doc.get(Content) == ISBN100
  doc.get(name)== LUCENE IN ACTION
  doc.get(author)  == Erik Hatcher
  .

This is my Requirement.

Please
With regards
Karthik


-Original Message-
From: Erik Hatcher [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 04, 2005 5:10 PM
To: Lucene Users List
Subject: Re: INDEXREADER + MAXDOC



On Jan 4, 2005, at 5:19 AM, Karthik N S wrote:
 On using the integer number of  Indexreader.maxDoc() API ,

 Is it possible to get the VALUES from the varoius  fieldtypes.

 ex:-   'docs.get(contents)  at  IndexReader.maxdoc()'



 If so How...??

Just to be sure I understand... you want the last document in the
index?  IndexReader.document(n) will give you this.

Erik


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: INDEXREADER + MAXDOC

2005-01-04 Thread Erik Hatcher
On Jan 4, 2005, at 7:29 AM, Karthik N S wrote:
Hi Erik
  I would like to EXTRACT the DATA from the various fields of the Last
Document [as u said ]
  Ex: at IndexReader.maxDoc = 100
  doc.get(Content) == ISBN100
  doc.get(name)== LUCENE IN ACTION
  doc.get(author)  == Erik Hatcher
  .
This is my Requirement.
So...
doc = reader.document(100)
Or am I missing something from what you're asking?  You need to have 
the data *stored* in the fields you're going to retrieve from the 
returned Document.

Erik
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]