This is called once when a writer is first
instantiated to give the policy a chance to remove old
commit points.
The writer locates all index commits present in the
index directory and calls this method. The policy may
choose to delete some of the commit points, doing so by
calling method {@link IndexCommit#delete delete()}
of {@link IndexCommit}.
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.
Namespace: Lucene.Net.IndexAssembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1
Syntax
C# |
---|
void OnInit(
IList commits
) |
Visual Basic |
---|
Sub OnInit ( _
commits As IList _
) |
Visual C++ |
---|
void OnInit(
IList^ commits
) |
Parameters
- commits
- Type: System.Collections..::..IList
List of current
{@link IndexCommit point-in-time commits},
sorted by age (the 0th one is the oldest commit).
See Also