This commit is contained in:
Will Kahn-Greene 2013-03-18 18:25:25 -04:00
Родитель 9f4a91ea0d
Коммит 0b49f9cf09
1 изменённых файлов: 12 добавлений и 2 удалений

Просмотреть файл

@ -173,8 +173,11 @@ each search result.
S can be sliced
---------------
:py:class:`elasticutils.S` supports slicing allowing you to get back
only the results you're looking for.
By default ElasticSearch gives you the first 10 results.
If you want something different than that, :py:class:`elasticutils.S`
supports slicing allowing you to get back the specific results you're
looking for.
For example::
@ -183,6 +186,7 @@ For example::
results = some_s[:10] # returns first 10 results
results = some_s[10:20] # returns results 10 through 19
The slicing is chainable, too::
some_s = S()[:10]
@ -197,6 +201,12 @@ The slicing is chainable, too::
the results back and then slice them in Python. Ew.
.. seealso::
http://www.elasticsearch.org/guide/reference/api/search/from-size.html
ElasticSearch from / size documentation
S is lazy
---------