关于es,用字符串的多字段排序,例如使用title.sort排序,是基于docvalues吗?
Elasticsearch | 作者 hkdlishenbo | 发布于2018年07月30日 | 阅读数:8100
es为了实现字符串即能分词又能排序,可以设置多字段。如下:
"title": {
"type": "string",
"analyzer": "ansj",
"fields": {
"sort": {
"type": "string",
"index": "not_analyzed"
}
}
}
我们就可以通过title字段作为搜索,而用title.sort字段作为排序:
GET /_search
{
"query": {
"match": {
"title": "elasticsearch"
}
},
"sort": "title.sort"
}
我想问,使用title.sort排序,是基于docvalues 还是fielddata,还是别的什么?
"title": {
"type": "string",
"analyzer": "ansj",
"fields": {
"sort": {
"type": "string",
"index": "not_analyzed"
}
}
}
我们就可以通过title字段作为搜索,而用title.sort字段作为排序:
GET /_search
{
"query": {
"match": {
"title": "elasticsearch"
}
},
"sort": "title.sort"
}
我想问,使用title.sort排序,是基于docvalues 还是fielddata,还是别的什么?
2 个回复
kennywu76 - Wood
赞同来自: hkdlishenbo
yayg2008
赞同来自: