aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/test/resources/basic-search-for-docker/src/main/application/searchdefinitions/music.sd
blob: d6bcaac8ae0baad28de8c98cf539dd4b190c31b2 (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
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
	    }
    }

    fieldset default {
        fields: artist, title, album
    }

    rank-profile song inherits default {
	  first-phase {
	    expression:nativeRank(artist,title,album) + if(isNan(attribute(popularity)) == 1, 0,attribute(popularity))
      }
    }
}