aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/ngram.sd
blob: acdbe5d24d6309bfd2c1ddb0bfd960712dc038ce (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 Yahoo. 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
      }
    }

  }

}