mirror of https://github.com/apache/lucene.git
document the compound file format
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@179407 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fa97a9bb13
commit
17d02d8f2f
|
@ -1176,6 +1176,26 @@ limitations under the License.
|
|||
</blockquote>
|
||||
</td></tr>
|
||||
<tr><td><br/></td></tr>
|
||||
</table>
|
||||
<table border="0" cellspacing="0" cellpadding="2" width="100%">
|
||||
<tr><td bgcolor="#828DA6">
|
||||
<font color="#ffffff" face="arial,helvetica,sanserif">
|
||||
<a name="Compound Files"><strong>Compound Files</strong></a>
|
||||
</font>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<blockquote>
|
||||
<p>Starting with Lucene 1.4 the compound file format became default. This
|
||||
is simply a container for all files described in the next section.</p>
|
||||
<p>Compound (.cfs) --> FileCount, <DataOffset, FileName><sup>FileCount</sup>,
|
||||
FileData<sup>FileCount</sup></p>
|
||||
<p>FileCount --> VInt</p>
|
||||
<p>DataOffset --> Long</p>
|
||||
<p>FileName --> String</p>
|
||||
<p>FileData --> raw file data</p>
|
||||
</blockquote>
|
||||
</td></tr>
|
||||
<tr><td><br/></td></tr>
|
||||
</table>
|
||||
</blockquote>
|
||||
</p>
|
||||
|
|
|
@ -789,6 +789,25 @@
|
|||
String
|
||||
</p>
|
||||
</subsection>
|
||||
|
||||
<subsection name="Compound Files">
|
||||
|
||||
<p>Starting with Lucene 1.4 the compound file format became default. This
|
||||
is simply a container for all files described in the next section.</p>
|
||||
|
||||
<p>Compound (.cfs) --> FileCount, <DataOffset, FileName><sup>FileCount</sup>,
|
||||
FileData<sup>FileCount</sup></p>
|
||||
|
||||
<p>FileCount --> VInt</p>
|
||||
|
||||
<p>DataOffset --> Long</p>
|
||||
|
||||
<p>FileName --> String</p>
|
||||
|
||||
<p>FileData --> raw file data</p>
|
||||
|
||||
</subsection>
|
||||
|
||||
</section>
|
||||
|
||||
<section name="Per-Segment Files">
|
||||
|
|
Loading…
Reference in New Issue