Using Java how would you find out the number of documents in an lucene index?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
IndexReader contains the methods you need, in particular, numDocs |
|||
|
|
The official documentation: http://lucene.apache.org/java/2_4_0/api/org/apache/lucene/index/IndexReader.html#numDocs() |
|||
|
|
Using java you can find the number of documents like this :
|
|||
|
|