summaryrefslogtreecommitdiff
path: root/test/framework/src/main/resources/org/elasticsearch/analysis/common/test1.json
blob: 38937a9b5af9373a8fc59d3e44515d6f58e5cc0f (plain)
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
{
    "index":{
        "analysis":{
            "tokenizer":{
                "standard":{
                    "type":"standard"
                }
            },
            "filter":{
                "stop":{
                    "type":"stop",
                    "stopwords":["test-stop"]
                },
                "stop2":{
                    "type":"stop",
                    "stopwords":["stop2-1", "stop2-2"]
                },
                "my":{
                    "type":"myfilter"
                },
                "dict_dec":{
                    "type":"dictionary_decompounder",
                    "word_list":["donau", "dampf", "schiff", "spargel", "creme", "suppe"]
                }
            },
            "analyzer":{
                "standard":{
                    "type":"standard",
                    "stopwords":["test1", "test2", "test3"]
                },
                "custom1":{
                    "tokenizer":"standard",
                    "filter":["stop", "stop2"]
                },
                "custom4":{
                    "tokenizer":"standard",
                    "filter":["my"]
                },
                "custom6":{
                    "tokenizer":"standard",
                    "position_increment_gap": 256
                },
                "czechAnalyzerWithStemmer":{
                    "tokenizer":"standard",
                    "filter":["standard", "lowercase", "stop", "czech_stem"]
                },
                "decompoundingAnalyzer":{
                    "tokenizer":"standard",
                    "filter":["dict_dec"]
                }
            }
        }
    }
}