Skip to content

Latest commit

 

History

History
executable file
·
17 lines (13 loc) · 626 Bytes

File metadata and controls

executable file
·
17 lines (13 loc) · 626 Bytes

From / Size

使用fromsize参数来进行分页。from参数定义了你要提取的第一个结果的偏移量。size参数定义了要返回的最大匹配数。

fromsize可以作为请求参数来设置,也可以在请求体中来设置。from默认是0size默认是10

curl -XGET 'localhost:9200/_search?pretty' -d'
{
    "from" : 0, "size" : 10,
    "query" : {
        "term" : { "user" : "kimchy" }
    }
}'

注意from + size不能比index.max_result_window更大,这个值默认是10000Scroll或者Search AfterAPI是查询大量数据更有效的办法。