弹性搜索命中数为N,但返回的结果要少得多

时间:2016-02-11 10:53:14

标签: elasticsearch

我不确定某处是否设置了默认限制,但我的弹性搜索hit条目告诉我有135次点击,而我只回到了10次。

因为它总是看起来最高为10,似乎肯定有某个默认设置?

[hits] => Array
    (
        [total] => 135
        [max_score] => 1
        [hits] => Array
            (
                [0] => Array (  /* document content */ )
                /*  and so on ... */ 
                [9] => Array ( /* document content */ )
            )  
     )

1 个答案:

答案 0 :(得分:1)

默认情况下Elastic Search会返回10次点击。您可以使用size

进行更改
GET /index/type/_search?size=100