【发布时间】:2014-02-03 14:45:50
【问题描述】:
目的
删除停用词出现在术语方面
环境和设置
Mac OSX, ES 0.90.7 通过自制软件安装
步骤
更新配置
# /usr/local/Cellar/elasticsearch/0.90.7/config/elasticsearch.yml
# add more Stopwords to default standard analyzer
index:
analysis:
analyzer:
standard:
type: standard
stopwords: [http, t.co]
重启 ES
curl -XGET 'localhost:9200/_analyze?analyzer=standard&pretty' -d 'this is a test http'
结果是
{
"tokens": [
{
"token": "test",
"start_offset": 10,
"end_offset": 14,
"type": "<ALPHANUM>",
"position": 4
},
{
"token": "http",
"start_offset": 15,
"end_offset": 19,
"type": "<ALPHANUM>",
"position": 5
}
]
}
期待
http 不应被索引也不应出现在令牌中
【问题讨论】: