|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.lucene.replicator.IndexRevision
public class IndexRevision
A Revision
of a single index files which comprises the list of files
that are part of the current IndexCommit
. To ensure the files are not
deleted by IndexWriter
for as long as this revision stays alive (i.e.
until release()
), the current commit point is snapshotted, using
SnapshotDeletionPolicy
(this means that the given writer's
config
should return
SnapshotDeletionPolicy
).
When this revision is released
, it releases the obtained
snapshot as well as calls IndexWriter.deleteUnusedFiles()
so that the
snapshotted files are deleted (if they are no longer needed).
Constructor Summary | |
---|---|
IndexRevision(IndexWriter writer)
Constructor over the given IndexWriter . |
Method Summary | |
---|---|
int |
compareTo(Revision o)
|
int |
compareTo(String version)
Compares the revision to the given version string. |
Map<String,List<RevisionFile>> |
getSourceFiles()
Returns the files that comprise this revision, as a mapping from a source to a list of files. |
String |
getVersion()
Returns a string representation of the version of this revision. |
InputStream |
open(String source,
String fileName)
Returns an IndexInput for the given fileName and source. |
void |
release()
Called when this revision can be safely released, i.e. |
static Map<String,List<RevisionFile>> |
revisionFiles(IndexCommit commit)
Returns a singleton map of the revision files from the given IndexCommit . |
static String |
revisionVersion(IndexCommit commit)
Returns a String representation of a revision's version from the given IndexCommit . |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public IndexRevision(IndexWriter writer) throws IOException
IndexWriter
. Uses the last
IndexCommit
found in the Directory
managed by the given
writer.
IOException
Method Detail |
---|
public static Map<String,List<RevisionFile>> revisionFiles(IndexCommit commit) throws IOException
IndexCommit
.
IOException
public static String revisionVersion(IndexCommit commit)
IndexCommit
.
public int compareTo(String version)
Revision
Comparable.compareTo(Object)
.
compareTo
in interface Revision
public int compareTo(Revision o)
compareTo
in interface Comparable<Revision>
public String getVersion()
Revision
Revision.compareTo(String)
as well as to
serialize/deserialize revision information. Therefore it must be self
descriptive as well as be able to identify one revision from another.
getVersion
in interface Revision
public Map<String,List<RevisionFile>> getSourceFiles()
Revision
getSourceFiles
in interface Revision
public InputStream open(String source, String fileName) throws IOException
Revision
IndexInput
for the given fileName and source. It is the
caller's respnsibility to close the IndexInput
when it has been
consumed.
open
in interface Revision
IOException
public void release() throws IOException
Revision
release
in interface Revision
IOException
public String toString()
toString
in class Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |