默认情况下
min_doc_freq为5,因此您的查询不起作用,因为您的索引中至少包含5个
term属性为黄色的文档。因此,
min_doc_freq在查询中设置为1,它应该可以工作。
{ "query": { "more_like_this": { "like": "Hello", "min_term_freq": 1, "min_doc_freq": 1 } }}
默认情况下
min_doc_freq为5,因此您的查询不起作用,因为您的索引中至少包含5个
term属性为黄色的文档。因此,
min_doc_freq在查询中设置为1,它应该可以工作。
{ "query": { "more_like_this": { "like": "Hello", "min_term_freq": 1, "min_doc_freq": 1 } }}