Commit 19c4165da1dc8f4b9ebb6520f89e9aa65faa0454
1 parent
a03ad837
Exists in
master
and in
2 other branches
Updated readme [skip ci]
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
README.md
... | ... | @@ -180,7 +180,7 @@ Get the full response from the search server |
180 | 180 | results.response |
181 | 181 | ``` |
182 | 182 | |
183 | -**Note:** By default, Elasticsearch and OpenSearch [limit paging](#deep-paging) to the first 10,000 results for performance. With Elasticsearch 7 and OpenSearch, this applies to the total count as well. | |
183 | +**Note:** By default, Elasticsearch and OpenSearch [limit paging](#deep-paging) to the first 10,000 results for performance. This applies to the total count as well. | |
184 | 184 | |
185 | 185 | ### Boosting |
186 | 186 | |
... | ... | @@ -1757,7 +1757,7 @@ class Product < ApplicationRecord |
1757 | 1757 | end |
1758 | 1758 | ``` |
1759 | 1759 | |
1760 | -If you just need an accurate total count with Elasticsearch 7 and OpenSearch, you can instead use: | |
1760 | +If you just need an accurate total count, you can instead use: | |
1761 | 1761 | |
1762 | 1762 | ```ruby |
1763 | 1763 | Product.search("pears", body_options: {track_total_hits: true}) | ... | ... |