summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/indexsettings.sd
blob: c5eca80c1a0cbaed52b8005a9a0109ba6ae400c3 (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
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search indexsettings {

  stemming: shortest

  document indexsettings {

    field allstemmed type string {
        stemming: all
    }

    field usingdefault type string {
    }

    field notstemmed type string {
        stemming: none
    }

    field multiplestems type string {
        stemming: multiple
    }

  }

}