Language Analyzers(语言分析器)
配置语言分析仪
Stopwords(停止词)
Excluding words from stemming(排除词干)
Reimplementing language analyzers(重新实现语言分析器)
arabic 分析器
arabic 分析器{
"settings": {
"analysis": {
"filter": {
"arabic_stop": {
"type": "stop",
"stopwords": "_arabic_" # 1
},
"arabic_keywords": {
"type": "keyword_marker",
"keywords": [] # 2
},
"arabic_stemmer": {
"type": "stemmer",
"language": "arabic"
}
},
"analyzer": {
"arabic": {
"tokenizer": "standard",
"filter": [
"lowercase",
"arabic_stop",
"arabic_normalization",
"arabic_keywords",
"arabic_stemmer"
]
}
}
}
}
}armenian 分析器
Last updated