在“更像这个查询”中,我们不仅可以指定文档,还可以指定其他一些文本:
{
"more_like_this" : {
"fields" : ["title", "description"],
"like" : [
{
"_index" : "imdb",
"_type" : "movies",
"_id" : "1"
},
"and potentially some more text here as well"
],
"min_term_freq" : 1,
"max_query_terms" : 12
}
是否可以使用Spring Data和Elasticsearch Template添加一组文档和一大块文本来查询,如上例所示?阅读https://docs.spring.io/spring-data/elasticsearch/docs/current/api/似乎MoreLikeThisQuery类不支持,我是对的吗?是进行该查询的唯一方法吗?