aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/attributeprefetch/attributeprefetch.sd
blob: 30dbda3ca5f84665fc20fa14cae1c5baa976a8a1 (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
51
52
53
54
55
56
57
58
59
60
61
62
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema prefetch {
  document prefetch {
    field singlebyte type byte {
      indexing: attribute
    }
    field multibyte type array<byte> {
      indexing: attribute
    }
    field wsbyte type weightedset<byte> {
      indexing: attribute
    }
    field singleint type int {
      indexing: attribute
    }
    field multiint type array<int> {
      indexing: attribute
    }
    field wsint type weightedset<int> {
      indexing: attribute
    }
    field singlelong type long {
      indexing: attribute
    }
    field multilong type array<long> {
      indexing: attribute
    }
    field wslong type weightedset<long> {
      indexing: attribute
    }
    field singlefloat type float {
      indexing: attribute
    }
    field multifloat type array<float> {
      indexing: attribute
    }
    field singledouble type double {
      indexing: attribute
    }
    field multidouble type array<double> {
      indexing: attribute
    }
    field singlestring type string {
      indexing: attribute
      match {
        token
      }
    }
    field multistring type array<string> {
      indexing: attribute
      match {
        token
      }
    }
    field wsstring type weightedset<string> {
      indexing: attribute
      match {
        token
      }
    }
  }
}