summaryrefslogtreecommitdiffstats
path: root/sample-apps/basic-search-tensor/src/main/application/searchdefinitions/music.sd
blob: e9675b612cc368d0610a00d95d5d8198c08e2b24 (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
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search music {
    document music {
        field artist type string {
            indexing: summary | index
        }

        field artistId type string {
            indexing: summary | attribute
        }

        field title type string {
            indexing: summary | index
        }

        field album type string {
            indexing: index
        }

        field duration type int {
            indexing: summary
        }

        field year type int {
            indexing: summary | attribute
        }

        field popularity type int {
            indexing: summary | attribute
        }

        field tensor_attribute type tensor(x{}) {
            indexing: summary | attribute
            attribute: tensor(x{})
        }

    }

    constant tensor_constant {
        file: constants/constant_tensor_file.json
        type: tensor(x{})
    }

    rank-profile simple_tensor_ranking inherits default {
        first-phase {
            expression: sum(query(tensor) * attribute(tensor_attribute))
        }
    }

    rank-profile constant_tensor_ranking inherits default {
        first-phase {
            expression: sum(query(tensor) * attribute(tensor_attribute) * constant(tensor_constant))
        }
    }

}