我的映射定义中有以下字段:
...
"my_field": {
"type": "string",
"index":"not_analyzed"
}
...
当我索引具有该值的文档时,my_field = 'test-some-another'
该值被拆分为 3 个术语:test
, some
, another
.
我究竟做错了什么?
我创建了以下索引:
curl -XPUT localhost:9200/my_index -d '{
"index": {
"settings": {
"number_of_shards": 5,
"number_of_replicas": 2
},
"mappings": {
"my_type": {
"_all": {
"enabled": false
},
"_source": {
"compressed": true
},
"properties": {
"my_field": {
"type": "string",
"index": "not_analyzed"
}
}
}
}
}
}'
然后我索引以下文档:
curl -XPOST localhost:9200/my_index/my_type -d '{
"my_field": "test-some-another"
}'
然后我将插件https://github.com/jprante/elasticsearch-index-termlist与以下 API 一起使用:
curl -XGET localhost:9200/my_index/_termlist
这给了我以下响应:
{"ok":true,"_shards":{"total":5,"successful":5,"failed":0},"terms": ["test","some","another"]}