gpt4 book ai didi

search - 定制分析仪Elasticsearch Soundex Plus Snowball

转载 作者:行者123 更新时间:2023-12-02 23:38:05 26 4
gpt4 key购买 nike

以下对我有用(搜索“测试”还返回带有“测试”的字段):
index :
analysis :
analyzer :
default :
type : snowball
language : english
在我的elasticsearch.yml文件中设置时。

我想将其与我安装的soundex结合使用,所以我尝试了以下方法:

index :
analysis :
analyzer :
default :
type : custom
tokenizer : standard
filter : [standard, lowercase, soundex_filter, stemming]
filter :
soundex_filter :
type : phonetic
encoder : soundex
replace : true
stemming :
type : snowball
language : english

但没有成功,它们似乎都不起作用(没有阻止或soundex)

有人在组合过滤器方面取得了成功吗?

最佳答案

对于那些感兴趣的人,这里是正确的语法
index :
analysis :
analyzer :
default :
type : custom
tokenizer : standard
filter : [standard, lowercase, stemming_filter, soundex_filter]
filter :
soundex_filter :
type : phonetic
encoder : soundex
replace : false
stemming_filter :
type : snowball
language : English

替换为true某种程度上压倒了词根...

关于search - 定制分析仪Elasticsearch Soundex Plus Snowball,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27911887/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com