You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With v0.27, Meilisearch introduced a hardcoded limit restricting the amount of search results a query can return to 1000.
In v0.28, this harcoded limit will be a configurable index setting, pagination. pagination accepts a settings object with one field, limitedTomaxTotalHits, which accepts an integer and has a default value of 1000.
Users may update the full settings object or use the direct API route indexes/:index/settings/pagination with GET, PATCH, and DELETE endpoints.
1759: v0.28: Pagination settings r=maryamsulemani97 a=guimachiavelli
Closes#1722
Note for reviewers: you may ignore the failed CI checks, as they are currently failing due to a link to a document created in another PR.
Co-authored-by: gui machiavelli <hey@guimachiavelli.com>
Co-authored-by: gui machiavelli <gui@meilisearch.com>
Co-authored-by: Maryam Sulemani <maryam@meilisearch.com>
Co-authored-by: Maryam <90181761+maryamsulemani97@users.noreply.github.com>
Co-authored-by: bors[bot] <26634292+bors[bot]@users.noreply.github.com>
1707: v0.28 r=guimachiavelli a=guimachiavelli
This is a staging PR for all changes related to Meilisearch v0.28.
Please avoid making changes directly to this PR; instead, create new child branches based off this one.
Closes#1687, #1688, #1691, #1692, #1693, #1694, #1699, #1700, #1701, #1702, #1703, #1704, #1706, #1722, #1727, #561
Co-authored-by: gui machiavelli <hey@guimachiavelli.com>
Co-authored-by: gui machiavelli <gui@meilisearch.com>
Co-authored-by: Tommy Melvin <tommy@meilisearch.com>
Co-authored-by: Maryam Sulemani <maryam@meilisearch.com>
Co-authored-by: Maryam <90181761+maryamsulemani97@users.noreply.github.com>
With v0.27, Meilisearch introduced a hardcoded limit restricting the amount of search results a query can return to 1000.
In v0.28, this harcoded limit will be a configurable index setting,
pagination
.pagination
accepts a settings object with one field,limitedTo
maxTotalHits
, which accepts an integer and has a default value of1000
.Users may update the full settings object or use the direct API route
indexes/:index/settings/pagination
withGET
,PATCH
, andDELETE
endpoints.When implementing this change in the docs, we should review the hardcoded limits from the "Known limitations" page. When doing so, we should take into account that the current text can be confusing and might not properly explain how the search results limit interacts with the
limit
andoffset
search parameters.Reference
pagination
andfaceting
specifications#157The text was updated successfully, but these errors were encountered: