public class IndexDeletionPolicyWrapper extends Object implements org.apache.lucene.index.IndexDeletionPolicy
IndexDeletionPolicy| Constructor and Description |
|---|
IndexDeletionPolicyWrapper(org.apache.lucene.index.IndexDeletionPolicy deletionPolicy) |
| Modifier and Type | Method and Description |
|---|---|
org.apache.lucene.index.IndexCommit |
getCommitPoint(Long version) |
Map<Long,org.apache.lucene.index.IndexCommit> |
getCommits()
Gets the commit points for the index.
|
org.apache.lucene.index.IndexCommit |
getLatestCommit()
Gets the most recent commit point
It is recommended to reserve a commit point for the duration of usage so that
it is not deleted by the underlying deletion policy
|
org.apache.lucene.index.IndexDeletionPolicy |
getWrappedDeletionPolicy() |
void |
onCommit(List list)
Internal use for Lucene... do not explicitly call.
|
void |
onInit(List list)
Internal use for Lucene... do not explicitly call.
|
void |
releaseCommitPoint(Long indexCommitVersion)
Release a previously saved commit point
|
void |
saveCommitPoint(Long indexCommitVersion)
Permanently prevent this commit point from being deleted.
|
void |
setReserveDuration(Long indexVersion,
long reserveTime)
Set the duration for which commit point is to be reserved by the deletion policy.
|
public IndexDeletionPolicyWrapper(org.apache.lucene.index.IndexDeletionPolicy deletionPolicy)
public org.apache.lucene.index.IndexCommit getLatestCommit()
public org.apache.lucene.index.IndexDeletionPolicy getWrappedDeletionPolicy()
public void setReserveDuration(Long indexVersion, long reserveTime)
indexVersion - version of the commit point to be reservedreserveTime - time in milliseconds for which the commit point is to be reservedpublic void saveCommitPoint(Long indexCommitVersion)
public void releaseCommitPoint(Long indexCommitVersion)
public void onInit(List list) throws IOException
onInit in interface org.apache.lucene.index.IndexDeletionPolicyIOExceptionpublic void onCommit(List list) throws IOException
onCommit in interface org.apache.lucene.index.IndexDeletionPolicyIOExceptionpublic org.apache.lucene.index.IndexCommit getCommitPoint(Long version)
version - the version of the commit pointpublic Map<Long,org.apache.lucene.index.IndexCommit> getCommits()