aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/indexinfo_fieldsets/indexinfo_fieldsets.sd
blob: b75b407731b1d333d23d88d90639f3703cd4b1dd (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema indexinfo_fieldsets {

  document indexinfo_fieldsets {

    field nostemming1 type string {
      indexing: summary | index
      stemming: none
    }

    field nostemming2 type string {
      indexing: summary | index
      stemming: none
    }

    field nonormalizing1 type string {
      indexing: summary | index
      normalizing: none
    }

    field nonormalizing2 type string {
      indexing: summary | index
      normalizing: none
    }

    field exact1 type string {
      indexing: summary | index
      match: exact
    }

    field exact2 type string {
      indexing: summary | index
      match: exact
    }

  }

  fieldset nostemming {
    fields: nostemming1, nostemming2
  }

  fieldset nonormalizing {
    fields: nonormalizing1, nonormalizing2
  }

  fieldset exact {
    fields: exact1, exact2
  }

}