This is called each time the writer completed a commit.
This gives the policy a chance to remove old commit points
with each commit.
The policy may now choose to delete old commit points
by calling method
IndexCommitPoint.delete delete()
of
IndexCommitPoint .
If writer has autoCommit = true then
this method will in general be called many times during
one instance of
IndexWriter . If
autoCommit = false then this method is
only called once when
IndexWriter.close is
called, or not at all if the
IndexWriter.abort is called.
Note: the last CommitPoint is the most recent one,
i.e. the "front index state". Be careful not to delete it,
unless you know for sure what you are doing, and unless
you can afford to lose the index content while doing that.
Parameters: commits - List of IndexCommitPoint,sorted by age (the 0th one is the oldest commit). |