aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/music3/music3.sd
blob: 8aeed27d29f14ea2b7a1ed8935f9dc1bf76f3f3f (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
63
64
65
66
67
68
69
70
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search music3 {

  document music3 {

    field title type string {
      indexing: summary | index
      # index-to: title, default
      rank-type: about

      header
    }

    field artist type string {
      indexing: summary | attribute | index
      # index-to: artist, default
      rank-type:about

      header
    }

    field year type int {
      indexing: summary | attribute

      header
    }

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

      header
    }

    field url type uri {
      indexing: summary | index

      header
    }

  }

  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
    }
  }

}