| org.compass.annotations.Store
Store | public enum Store (Code) | | Specifies whether and how a meta-data property will be stored.
author: kimchy |
Field Summary | |
Enum Constant | COMPRESS Store the original property value in the index in a compressed form. | Enum Constant | NO Do not store the property value in the index. | Enum Constant | YES Store the original property value in the index. |
COMPRESS | Enum Constant COMPRESS(Code) | | Store the original property value in the index in a compressed form. This is
useful for long documents and for binary valued fields.
|
NO | Enum Constant NO(Code) | | Do not store the property value in the index.
|
YES | Enum Constant YES(Code) | | Store the original property value in the index. This is useful for short texts
like a document's title which should be displayed with the results. The value
is stored in its original form, i.e. no analyzer is used before it is stored.
|
|
|