Skip to main content
A typical method for browsing results on mobile devices is an “infinite scroll”, which loads results as users scroll through the list. With InstantSearch this is as easy as using the InfiniteHits widget.
If there are no hits, you should display a message to users and clear filters so they can start over.

Show more than 1,000 hits

To ensure excellent performance, the default limit for the number of hits you can retrieve for a query is 1,000.
var response = await client.SetSettingsAsync(
  "ALGOLIA_INDEX_NAME",
  new IndexSettings { PaginationLimitedTo = 1000 }
);
If you need to show more than 1,000 hits, you can set a different limit using the paginationLimitedTo parameter. The higher you set this limit, the slower your search performance can become.