mirror of https://github.com/apache/lucene.git
LUCENE-5969: tidy up format names to be consistent, add missing file formats doc
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene5969@1633607 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
533249e67d
commit
300ee91377
|
@ -84,7 +84,7 @@ public final class BlockTreeTermsReader extends FieldsProducer {
|
|||
|
||||
/** Extension of terms file */
|
||||
static final String TERMS_EXTENSION = "tim";
|
||||
final static String TERMS_CODEC_NAME = "BLOCK_TREE_TERMS_DICT";
|
||||
final static String TERMS_CODEC_NAME = "BlockTreeTermsDict";
|
||||
|
||||
/** Initial terms format. */
|
||||
public static final int VERSION_START = 0;
|
||||
|
@ -94,7 +94,7 @@ public final class BlockTreeTermsReader extends FieldsProducer {
|
|||
|
||||
/** Extension of terms index file */
|
||||
static final String TERMS_INDEX_EXTENSION = "tip";
|
||||
final static String TERMS_INDEX_CODEC_NAME = "BLOCK_TREE_TERMS_INDEX";
|
||||
final static String TERMS_INDEX_CODEC_NAME = "BlockTreeTermsIndex";
|
||||
|
||||
// Open input to the main terms dict file (_X.tib)
|
||||
final IndexInput termsIn;
|
||||
|
|
|
@ -184,7 +184,7 @@ public final class Lucene50DocValuesFormat extends DocValuesFormat {
|
|||
|
||||
static final String DATA_CODEC = "Lucene50DocValuesData";
|
||||
static final String DATA_EXTENSION = "dvd";
|
||||
static final String META_CODEC = "Lucene50ValuesMetadata";
|
||||
static final String META_CODEC = "Lucene50DocValuesMetadata";
|
||||
static final String META_EXTENSION = "dvm";
|
||||
static final int VERSION_START = 0;
|
||||
static final int VERSION_CURRENT = VERSION_START;
|
||||
|
|
|
@ -60,7 +60,7 @@ import org.apache.lucene.util.StringHelper;
|
|||
* Files:
|
||||
* <ul>
|
||||
* <li><tt>segments_N</tt>: Header, Version, NameCounter, SegCount, <SegName,
|
||||
* SegID, SegCodec, DelGen, DeletionCount, FieldInfosGen, DocValuesGen,
|
||||
* HasSegID, SegID, SegCodec, DelGen, DeletionCount, FieldInfosGen, DocValuesGen,
|
||||
* UpdatesFiles><sup>SegCount</sup>, CommitUserData, Footer
|
||||
* </ul>
|
||||
* </p>
|
||||
|
@ -72,6 +72,8 @@ import org.apache.lucene.util.StringHelper;
|
|||
* {@link DataOutput#writeInt Int32}</li>
|
||||
* <li>Generation, Version, DelGen, Checksum, FieldInfosGen, DocValuesGen -->
|
||||
* {@link DataOutput#writeLong Int64}</li>
|
||||
* <li>HasSegID --> {@link DataOutput#writeByte Int8}</li>
|
||||
* <li>SegID --> {@link DataOutput#writeByte Int8<sup>ID_LENGTH</sup>}</li>
|
||||
* <li>SegName, SegCodec --> {@link DataOutput#writeString String}</li>
|
||||
* <li>CommitUserData --> {@link DataOutput#writeStringStringMap
|
||||
* Map<String,String>}</li>
|
||||
|
@ -94,7 +96,10 @@ import org.apache.lucene.util.StringHelper;
|
|||
* <li>DeletionCount records the number of deleted documents in this segment.</li>
|
||||
* <li>SegCodec is the {@link Codec#getName() name} of the Codec that encoded
|
||||
* this segment.</li>
|
||||
* <li>SegID is the id of the Codec that encoded this segment. </li>
|
||||
* <li>HasSegID is nonzero if the segment has an identifier. Otherwise, when it is 0
|
||||
* the identifier is {@code null} and no SegID is written. Null only happens for Lucene
|
||||
* 4.x segments referenced in commits.</li>
|
||||
* <li>SegID is the identifier of the Codec that encoded this segment. </li>
|
||||
* <li>CommitUserData stores an optional user-supplied opaque
|
||||
* Map<String,String> that was passed to
|
||||
* {@link IndexWriter#setCommitData(java.util.Map)}.</li>
|
||||
|
|
|
@ -118,7 +118,7 @@ public final class VersionBlockTreeTermsWriter extends FieldsConsumer {
|
|||
|
||||
/** Extension of terms file */
|
||||
static final String TERMS_EXTENSION = "tiv";
|
||||
final static String TERMS_CODEC_NAME = "VERSION_BLOCK_TREE_TERMS_DICT";
|
||||
final static String TERMS_CODEC_NAME = "VersionBlockTreeTermsDict";
|
||||
|
||||
/** Initial terms format. */
|
||||
public static final int VERSION_START = 1;
|
||||
|
@ -128,7 +128,7 @@ public final class VersionBlockTreeTermsWriter extends FieldsConsumer {
|
|||
|
||||
/** Extension of terms index file */
|
||||
static final String TERMS_INDEX_EXTENSION = "tipv";
|
||||
final static String TERMS_INDEX_CODEC_NAME = "VERSION_BLOCK_TREE_TERMS_INDEX";
|
||||
final static String TERMS_INDEX_CODEC_NAME = "VersionBlockTreeTermsIndex";
|
||||
|
||||
private final IndexOutput out;
|
||||
private final IndexOutput indexOut;
|
||||
|
|
Loading…
Reference in New Issue