Class IndexDeletionPolicy
Expert: policy for deletion of stale Index
Implement this interface, and pass it to one
of the Index
One expected use case for this (and the reason why it
was first created) is to work around problems with an
index directory accessed via filesystems like NFS because
NFS does not provide the "delete on last close" semantics
that Lucene's "point in time" search normally relies on.
By implementing a custom deletion policy, such as "a
commit is only removed once it has been stale for more
than X minutes", you can give your readers time to
refresh to the new commit before Index
Implementers of sub-classes should make sure that Clone()
returns an independent instance able to work with any other Index
Inheritance
Namespace: Lucene.Net.Index
Assembly: Lucene.Net.dll
Syntax
public abstract class IndexDeletionPolicy : object
Constructors
| Improve this Doc View SourceIndexDeletionPolicy()
Sole constructor, typically called by sub-classes constructors.
Declaration
protected IndexDeletionPolicy()
Methods
| Improve this Doc View SourceClone()
Declaration
public virtual object Clone()
Returns
Type | Description |
---|---|
System. |
OnCommit<T>(IList<T>)
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 Delete()
of Index
This method is only called when Commit()} or Dispose() is called, or possibly not at all if the Rollback()} method 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.
Declaration
public abstract void OnCommit<T>(IList<T> commits)
where T : IndexCommit
Parameters
Type | Name | Description |
---|---|---|
IList<T> | commits | List of Index |
Type Parameters
Name | Description |
---|---|
T |
OnInit<T>(IList<T>)
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 Delete().
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.
Declaration
public abstract void OnInit<T>(IList<T> commits)
where T : IndexCommit
Parameters
Type | Name | Description |
---|---|---|
IList<T> | commits | List of current point-in-time commits
(Index |
Type Parameters
Name | Description |
---|---|
T |