aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/ngram.sd
blob: 623a05d6a9d63e9c358a901449f4a90b180b3d30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search ngram {

  document ngram {

    field gram_1 type string {
      indexing: index | summary
      summary: dynamic
      match {
        gram
        gram-size:1
      }
    }

    field gram_2 type string {
      indexing: attribute | index # index take precedence for matching
      match: gram     # gram-size 2 is default
    }

    field gram_3 type string {
      indexing: index
      match {
        gram
        gram-size: 3
      }
    }

  }

}