aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/music3/music3.sd
blob: 435363d3450625465d2514575ecffa816106d470 (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
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema music3 {

  document music3 {

    field title type string {
      indexing: summary | index
      rank-type: about
    }

    field artist type string {
      indexing: summary | attribute | index
      rank-type:about
    }

    field year type int {
      indexing: summary | attribute
    }

    # Increase rank score of popular documents regardless of query
    field popularity type int {
      indexing: summary | attribute
    }

    field url type uri {
      indexing: summary | index
    }

  }

  rank-profile other {

    first-phase {
      expression: nativeRank
    }

    second-phase {
      expression: 0.5 * 0.5 * (0.1 * attribute(popularity) + fieldMatch(artist)) + 0.3 * fieldMatch(title)
      rerank-count:200
    }
  }

  rank-profile default {

    first-phase {
      expression: nativeRank
    }

    second-phase {
      expression {
        0.5 * 0.5 * (0.1 * attribute(popularity) + fieldMatch(artist))
        + 0.3 * fieldMatch(title)
      }
      rerank-count:200
    }
  }

}