标签:tps 请求 偏移量 targe res elastic tar get 查看
可以使用from和size参数来分析结果。from参数定义与要获取的第一个结果的偏移量。size参数允许您配置要返回的最大命中数。
虽然from和size可以设置为请求参数,但也可以在搜索体内设置。从默认值为0,并且size的默认值为10。
GET /_search { "from" : 0, "size" : 10, "query" : { "term" : { "user" : "kimchy" } } }
请注意,from+size不能超过index.max_result_window索引设置,默认值为10,000。查看Scroll或 Search After API,以获得更有效的深层滚动方式。
原文地址:https://www.elastic.co/guide/en/elasticsearch/reference/5.0/search-request-from-size.html
标签:tps 请求 偏移量 targe res elastic tar get 查看
原文地址:http://www.cnblogs.com/benjiming/p/7233810.html