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.