Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some documents stored in a Lucene index with a docId field. I want to get all docIds stored in the index. There is also a problem. Number of documents is about 300 000 so I would prefer to get this docIds in chunks of size 500. Is it possible to do so?

share|improve this question

2 Answers

up vote 15 down vote accepted
IndexReader reader = // create IndexReader
for (int i=0; i<reader.maxDoc(); i++) {
    if (reader.isDeleted(i))
        continue;

    Document doc = reader.document(i);
    String docId = doc.get("docId");

    // do something with docId here...
}
share|improve this answer
1  
What does happen if (reader.isDeleted(i)) is missing? – Jenea Feb 24 '10 at 16:16
Without the isDeleted() check, you would output id's for documents that had been previously deleted – bajafresh4life Feb 25 '10 at 3:34
To complete comment from above. Index changes are commited when index is reopen so reader.isDeleted(i) is necessary to guarantee that documents are valid. – Jenea Feb 24 '11 at 11:29

Document numbers (or ids) will be subsequent numbers from 0 to IndexReader.maxDoc()-1. These numbers are not persistent and are valid only for opened IndexReader. You could check if the document is deleted with IndexReader.isDeleted(int documentNumber) method

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.