【发布时间】:2022-04-19 14:12:47
【问题描述】:
我有一个基于(嵌套)新闻文章的“事件”类型,包括标题和文本,它们都具有多字段。
我试过了:
{
"query":{
"nested":{
"path":"article",
"query":{
"mlt":{
"fields":["article.title.search","article.text.search"],
"max_query_terms": 20,
"min_term_freq": 1,
"include": "false",
"like":[{
"_index":"myindex",
"_type":"event",
"doc":{
"article":{
"title":"this is the title",
"text":"this is the body of the article"
}
}]
}
}
}
}
}
但它总是返回 0 次点击
【问题讨论】:
标签: elasticsearch nested morelikethis