fix #1090 add bulgarian_analyzer
This commit is contained in:
parent
168030e027
commit
44b0e94f87
1 changed files with 21 additions and 0 deletions
|
@ -162,6 +162,18 @@
|
|||
"type": "stemmer",
|
||||
"language": "romanian"
|
||||
},
|
||||
"bulgarian_stop": {
|
||||
"type": "stop",
|
||||
"stopwords": "_bulgarian_"
|
||||
},
|
||||
"bulgarian_keywords": {
|
||||
"type": "keyword_marker",
|
||||
"keywords": ["пример"]
|
||||
},
|
||||
"bulgarian_stemmer": {
|
||||
"type": "stemmer",
|
||||
"language": "bulgarian"
|
||||
},
|
||||
"catalan_elision": {
|
||||
"type": "elision",
|
||||
"articles": [ "d", "l", "m", "n", "s", "t"]
|
||||
|
@ -529,6 +541,15 @@
|
|||
"romanian_stemmer"
|
||||
]
|
||||
},
|
||||
"bulgarian_analyzer": {
|
||||
"tokenizer": "standard",
|
||||
"filter": [
|
||||
"lowercase",
|
||||
"bulgarian_stop",
|
||||
"bulgarian_keywords",
|
||||
"bulgarian_stemmer"
|
||||
]
|
||||
},
|
||||
"catalan_analyzer": {
|
||||
"type": "custom",
|
||||
"tokenizer": "standard",
|
||||
|
|
Loading…
Add table
Reference in a new issue