mozilla / elasticutils

[deprecated] A friendly chainable ElasticSearch interface for python
http://elasticutils.rtfd.org
BSD 3-Clause "New" or "Revised" License
243 stars 76 forks source link

Added support for a `size` parameter to facets. #193

Closed kevinastone closed 10 years ago

kevinastone commented 10 years ago

Fixes #192.

You can now limit the number of facets returned by passing the size parameter:

>>> s.facet('category', size=5).facet_counts()

Signed-off-by: Kevin Stone kevinastone@gmail.com

willkg commented 10 years ago

This lacks documentation and a test.

Can you please add documentation to the facets section of the searching guide and also add a test to make sure the parameter is getting passed correctly?

kevinastone commented 10 years ago

Yep, added docs to both the api and searching docs as well as a unit test.

willkg commented 10 years ago

This looks great now. Thank you!