summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/schema/document/Matching.java
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/main/java/com/yahoo/schema/document/Matching.java')
-rw-r--r--config-model/src/main/java/com/yahoo/schema/document/Matching.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/config-model/src/main/java/com/yahoo/schema/document/Matching.java b/config-model/src/main/java/com/yahoo/schema/document/Matching.java
index 922643b03df..0b542f134ad 100644
--- a/config-model/src/main/java/com/yahoo/schema/document/Matching.java
+++ b/config-model/src/main/java/com/yahoo/schema/document/Matching.java
@@ -31,6 +31,8 @@ public class Matching implements Cloneable, Serializable {
/** Maximum number of characters to consider when searching in this field. Used for limiting resources, especially in streaming search. */
private Integer maxLength;
+ /** Maximum number of occurrences for each term */
+ private Integer maxTermOccurrences;
private String exactMatchTerminator = null;
@@ -53,6 +55,8 @@ public class Matching implements Cloneable, Serializable {
public Integer maxLength() { return maxLength; }
public Matching maxLength(int maxLength) { this.maxLength = maxLength; return this; }
+ public Integer maxTermOccurrences() { return maxTermOccurrences; }
+ public Matching maxTermOccurrences(int maxTermOccurrences) { this.maxTermOccurrences = maxTermOccurrences; return this; }
public boolean isTypeUserSet() { return typeUserSet; }
public MatchAlgorithm getAlgorithm() { return algorithm; }