GET /myindex/voc/100/_termvectors?pretty=true
{
"fields":["fields.bodyText"],
"term_statistics" : true,
"filter" : {
"min_doc_freq" : 50,
"max_doc_freq" : 60
}
}
此API仅返回部分结果。 有什么像
"from" : 0, "size" : 10,
与_search API分页一样?
答案 0 :(得分:0)
是的,有from
之类的内容代表您从哪个索引开始搜索,size
表示您想要返回的匹配数。
所以,如果你有这样的事情:
"from" : 0, "size" : 10,
它会从结果集中返回前十个结果。 This可能会有所帮助。