improving documentation about compression, as suggested by Doug

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150610 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2004-10-14 20:23:03 +00:00
parent f12555cb2a
commit d983ab6215
2 changed files with 18 additions and 4 deletions

View File

@ -1328,11 +1328,18 @@ limitations under the License.
<ul>
<li>low order bit is one for tokenized fields</li>
<li>second bit is one for fields containing binary data</li>
<li>third bit is one for fields with compression option enabled</li>
<li>third bit is one for fields with compression option enabled
(if compression is enabled, the algorithm used is ZLIB)</li>
</ul>
</p>
<p>Value --&gt;
String (default) or byte[] when the field value is a binary field
String | BinaryValue (depending on Bits)
</p>
<p>BinaryValue --&gt;
ValueSize, &lt;Byte&gt;^ValueSize
</p>
<p>ValueSize --&gt;
VInt
</p>
</li>

View File

@ -912,11 +912,18 @@
<ul>
<li>low order bit is one for tokenized fields</li>
<li>second bit is one for fields containing binary data</li>
<li>third bit is one for fields with compression option enabled</li>
<li>third bit is one for fields with compression option enabled
(if compression is enabled, the algorithm used is ZLIB)</li>
</ul>
</p>
<p>Value --&gt;
String (default) or byte[] when the field value is a binary field
String | BinaryValue (depending on Bits)
</p>
<p>BinaryValue --&gt;
ValueSize, &lt;Byte&gt;^ValueSize
</p>
<p>ValueSize --&gt;
VInt
</p>
</li>