whiteoctober / Pagerfanta

Pagination for PHP.
Other
1.59k stars 2 forks source link

[ElasticaAdapter] use count() instead search() for getNbResult() #280

Closed romainnorberg closed 5 years ago

romainnorberg commented 5 years ago

getNbResult() methods execute search()

-> use the count() method for performance gain (this add "size": 0 to ES query)


cf: https://github.com/whiteoctober/Pagerfanta/pull/213

romainnorberg commented 5 years ago

thanks @stof