public static final class Field.Store extends Parameter implements Serializable
| Modifier and Type | Field and Description |
|---|---|
static Field.Store |
COMPRESS
Deprecated.
Please use
CompressionTools instead.
For string fields that were previously indexed and stored using compression,
the new way to achieve this is: First add the field indexed-only (no store)
and additionally using the same field name as a binary, stored field
with CompressionTools.compressString(java.lang.String). |
static Field.Store |
NO
Do not store the field value in the index.
|
static Field.Store |
YES
Store the original field value in the index.
|
public static final Field.Store COMPRESS
CompressionTools instead.
For string fields that were previously indexed and stored using compression,
the new way to achieve this is: First add the field indexed-only (no store)
and additionally using the same field name as a binary, stored field
with CompressionTools.compressString(java.lang.String).public static final Field.Store YES
public static final Field.Store NO
Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.