summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/searchdefinition/Index.java
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/main/java/com/yahoo/searchdefinition/Index.java')
-rw-r--r--config-model/src/main/java/com/yahoo/searchdefinition/Index.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/config-model/src/main/java/com/yahoo/searchdefinition/Index.java b/config-model/src/main/java/com/yahoo/searchdefinition/Index.java
index d7e9e0da081..0ea3f5c24a3 100644
--- a/config-model/src/main/java/com/yahoo/searchdefinition/Index.java
+++ b/config-model/src/main/java/com/yahoo/searchdefinition/Index.java
@@ -56,8 +56,8 @@ public class Index implements Cloneable, Serializable {
/** The boolean index definition, if set */
private BooleanIndexDefinition boolIndex;
- // TODO: Remove when experimental posting list format is made default
- private boolean experimentalPostingListFormat = false;
+ /** Whether the posting lists of this index field should have interleaved features (num occs, field length) in document id stream. */
+ private boolean interleavedFeatures = false;
public Index(String name) {
this(name, false);
@@ -184,12 +184,12 @@ public class Index implements Cloneable, Serializable {
boolIndex = def;
}
- public void setExperimentalPostingListFormat(boolean value) {
- experimentalPostingListFormat = value;
+ public void setInterleavedFeatures(boolean value) {
+ interleavedFeatures = value;
}
- public boolean useExperimentalPostingListFormat() {
- return experimentalPostingListFormat;
+ public boolean useInterleavedFeatures() {
+ return interleavedFeatures;
}
}