aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/stemmingsetting.sd
blob: c3c2852ff655a33b86aaf472456fa1e32875ab7f (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
31
32
33
34
35
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search stemmingsetting {

  document stemmingsetting {

    field artist type string {
      indexing: index
      stemming: shortest
    }

    field title type string {
      indexing: index
      stemming: none
    }

    field song type string {
      indexing: index
      stemming: multiple
    }

    field track type string {
      stemming: shortest
    }

    field backward type string {
      indexing: index
      stemming: shortest
    }
  }

  index default {
     stemming: shortest
  }

}