我有词干问题。当我使用词干分析器时,单词没有被索引,只有数字被索引
我认为我的 conf 不好,但我在 Internet 上找不到解决方案,所以希望你能帮助我
这是我的conf:
PUT /myindex
{
"settings": {
"analysis": {
"filter": {
"french_stop": {
"type": "stop",
"stopwords": "_french_"
},
"french_stemmer": {
"type": "stemmer",
"language": "light_french"
}
},
"analyzer": {
"stem": {
"tokenizer": "standard",
"filter": [
"standard",
"lowercase",
"french_stop",
"french_stemmer",
"asciifolding"
]
}
}
}
}
}
PUT /myindex/_mapping/mytype
{
"properties": {
"field": {
"type": "string",
"analyzer": "stem"
}
}
}