post:/news/_search
{
"highlight": {
"fields": {
"title": {
},
"content": {}
},
"fragment_size": 45,
"number_of_fragments": 2
},
"size": 15,
"query": {
"bool": {
"filter": ,
"must": [{
"match": {
"content": "中华人民"
}
},
{
"match": {
"title": "中华人民"
}
}]
}
},
"from": 0,
"_source": {
"excludes": ["content"]
}
}
分词器使用的NLP
不使用highlight 时候查询只需要10ms 添加highlight后 查询为2300ms
有大神遇到过问题没
{
"highlight": {
"fields": {
"title": {
},
"content": {}
},
"fragment_size": 45,
"number_of_fragments": 2
},
"size": 15,
"query": {
"bool": {
"filter": ,
"must": [{
"match": {
"content": "中华人民"
}
},
{
"match": {
"title": "中华人民"
}
}]
}
},
"from": 0,
"_source": {
"excludes": ["content"]
}
}
分词器使用的NLP
不使用highlight 时候查询只需要10ms 添加highlight后 查询为2300ms
有大神遇到过问题没
1 个回复
rochy - rochy_he
赞同来自:
ES 的版本是多少?