From 17d02d8f2ffbee491eab562f800589ab1c65f03a Mon Sep 17 00:00:00 2001 From: Daniel Naber Date: Wed, 1 Jun 2005 19:47:14 +0000 Subject: [PATCH] document the compound file format git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@179407 13f79535-47bb-0310-9956-ffa450edef68 --- docs/fileformats.html | 20 ++++++++++++++++++++ xdocs/fileformats.xml | 19 +++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/docs/fileformats.html b/docs/fileformats.html index 7cdb4b1b298..a3d50717848 100644 --- a/docs/fileformats.html +++ b/docs/fileformats.html @@ -1176,6 +1176,26 @@ limitations under the License.
+ + + + +
+ + Compound Files + +
+
+

Starting with Lucene 1.4 the compound file format became default. This + is simply a container for all files described in the next section.

+

Compound (.cfs) --> FileCount, <DataOffset, FileName>FileCount, + FileDataFileCount

+

FileCount --> VInt

+

DataOffset --> Long

+

FileName --> String

+

FileData --> raw file data

+
+

diff --git a/xdocs/fileformats.xml b/xdocs/fileformats.xml index 14692d3e7c0..5c5c9ee6d68 100644 --- a/xdocs/fileformats.xml +++ b/xdocs/fileformats.xml @@ -789,6 +789,25 @@ String

+ + + +

Starting with Lucene 1.4 the compound file format became default. This + is simply a container for all files described in the next section.

+ +

Compound (.cfs) --> FileCount, <DataOffset, FileName>FileCount, + FileDataFileCount

+ +

FileCount --> VInt

+ +

DataOffset --> Long

+ +

FileName --> String

+ +

FileData --> raw file data

+ +
+