Lucene.Net  3.0.3
Lucene.Net is a port of the Lucene search engine library, written in C# and targeted at .NET runtime users.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Properties Pages
Public Member Functions | List of all members
Lucene.Net.Index.IndexDeletionPolicy Interface Reference

Expert: policy for deletion of stale index commits. More...

Inherited by Lucene.Net.Index.KeepOnlyLastCommitDeletionPolicy, and Lucene.Net.Index.SnapshotDeletionPolicy.

Public Member Functions

void OnInit< T > (IList< T > commits)
 This is called once when a writer is first instantiated to give the policy a chance to remove old commit points.
 
void OnCommit< T > (IList< T > commits)
 
 

Detailed Description

Expert: policy for deletion of stale index commits.

Implement this interface, and pass it to one of the IndexWriter or IndexReader constructors, to customize when older point-in-time commits are deleted from the index directory. The default deletion policy is KeepOnlyLastCommitDeletionPolicy, which always removes old commits as soon as a new commit is done (this matches the behavior before 2.2).

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 <see cref="IndexWriter" /> removes the old commits. Note that doing so will increase the storage requirements of the index. See LUCENE-710 for details.

Definition at line 51 of file IndexDeletionPolicy.cs.

Member Function Documentation

void Lucene.Net.Index.IndexDeletionPolicy.OnCommit< T > ( IList< T >  commits)

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 IndexCommit.Delete() of IndexCommit.

This method is only called when IndexWriter.Commit() or IndexWriter.Close() is called, or possibly not at all if the IndexWriter.Rollback() is called.

<u>Note:</u> 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
commitsList of IndexCommit, sorted by age (the 0th one is the oldest commit).

Implemented in Lucene.Net.Index.SnapshotDeletionPolicy, and Lucene.Net.Index.KeepOnlyLastCommitDeletionPolicy.

Type Constraints
T :IndexCommit 
void Lucene.Net.Index.IndexDeletionPolicy.OnInit< T > ( IList< T >  commits)

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 IndexCommit.Delete() of IndexCommit.

<u>Note:</u> 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
commitsList of current point-in-time commits, sorted by age (the 0th one is the oldest commit).

Implemented in Lucene.Net.Index.SnapshotDeletionPolicy, and Lucene.Net.Index.KeepOnlyLastCommitDeletionPolicy.

Type Constraints
T :IndexCommit 

The documentation for this interface was generated from the following file: