Commit e36c79d52f284593fae49d4cbcd03ca24dbce460
1 parent
a8baaf26
Exists in
master
and in
17 other branches
Clarify scroll API [skip ci]
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
README.md
@@ -1479,7 +1479,7 @@ indices_boost: {Category => 2, Product => 1} | @@ -1479,7 +1479,7 @@ indices_boost: {Category => 2, Product => 1} | ||
1479 | 1479 | ||
1480 | ## Scroll API | 1480 | ## Scroll API |
1481 | 1481 | ||
1482 | -To retrieve a very large number of results, use the [scroll API](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-scroll.html). | 1482 | +Searchkick also supports the [scroll API](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-scroll.html). Scrolling is not intended for real time user requests, but rather for processing large amounts of data. |
1483 | 1483 | ||
1484 | ```ruby | 1484 | ```ruby |
1485 | products = Product.search "*", scroll: "1m" | 1485 | products = Product.search "*", scroll: "1m" |