LUCENE-3892: add experimental note to BlockPostingsFormat

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1376313 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2012-08-22 23:29:12 +00:00
parent 28c80c2a35
commit 03473400bb
1 changed files with 4 additions and 0 deletions

View File

@ -41,6 +41,9 @@ import org.apache.lucene.util.packed.PackedInts;
* Block postings format, which encodes postings in packed int blocks
* for faster decode.
*
* <p><b>NOTE</b>: this format is still experimental and
* subject to change without backwards compatibility.
*
* <p>
* Basic idea:
* <ul>
@ -324,6 +327,7 @@ import org.apache.lucene.util.packed.PackedInts;
* </dl>
* </p>
*
* @lucene.experimental
*/
public final class BlockPostingsFormat extends PostingsFormat {