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:
Daniel Naber 2005-06-01 19:47:14 +00:00
parent fa97a9bb13
commit 17d02d8f2f
2 changed files with 39 additions and 0 deletions

View File

@ -1176,6 +1176,26 @@ limitations under the License.
</blockquote> </blockquote>
</td></tr> </td></tr>
<tr><td><br/></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) --&gt; FileCount, &lt;DataOffset, FileName&gt;<sup>FileCount</sup>,
FileData<sup>FileCount</sup></p>
<p>FileCount --&gt; VInt</p>
<p>DataOffset --&gt; Long</p>
<p>FileName --&gt; String</p>
<p>FileData --&gt; raw file data</p>
</blockquote>
</td></tr>
<tr><td><br/></td></tr>
</table> </table>
</blockquote> </blockquote>
</p> </p>

View File

@ -789,6 +789,25 @@
String String
</p> </p>
</subsection> </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) --&gt; FileCount, &lt;DataOffset, FileName&gt;<sup>FileCount</sup>,
FileData<sup>FileCount</sup></p>
<p>FileCount --&gt; VInt</p>
<p>DataOffset --&gt; Long</p>
<p>FileName --&gt; String</p>
<p>FileData --&gt; raw file data</p>
</subsection>
</section> </section>
<section name="Per-Segment Files"> <section name="Per-Segment Files">