summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/indexrewrite.sd
blob: c7d038a719aeb45c38d44f69ea2ee7f2cfe7d1f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search indexrewrite {
    document indexrewrite {
        field title_src type string {

        }
    }
    field title type string {
        indexing: input title_src | lowercase | normalize | tokenize | index
        # index-to: title, titleabstract, default
        indexing-rewrite: none
        rank-type: about
        stemming: none
        alias: headline
    }
    field title_s type string {
        indexing: input title_src | summary
    }
}