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

We have home grown search service based on Lucene. One particular question I'm faced some time ago was getting number of pending changes on IndexWriter. If the pending changes counter is zero there is no need to commit to the index, reopen IndexReader, IndexSearcher and so on. Also we have some application level logic that is linked to IndexReader.commit() call and it's better not to call it if there is no actual changes in commit point.

I have access to all the places where methods IndexReader.updateDocument() and IndexReader.remove() are called, so I simply can write my own counter of pending changes. But I'm intrested may be there is already exists one in the Lucene API itself? API check doesn't give me enough information on the topic.

share|improve this question

2 Answers

up vote 1 down vote accepted

See IndexReader.isCurrent().

share|improve this answer

You can use IndexWriter.numRAMDocs to get number of documents added, but I think there is no public API to get the current count of buffered deletes.

IndexWriter.ramSizeInBytes might also be useful here. It tells you how much RAM is currently in-use, so this will increase as you add or delete docs (but decrease when a flush takes place).

Note that IndexReader.isCurrent is only usable if you commit the changes from the IndexWriter, ie if you have pending changes but have not committed (or closed) the writer then IndexReader.isCurrent will still return true.

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.