fast-paginate VS fast_page

Compare fast-paginate vs fast_page and see what are their differences.

fast-paginate

A fast implementation of offset/limit pagination for Laravel. (by hammerstonedev)

fast_page

Blazing fast pagination for ActiveRecord with deferred joins ⚡️ (by planetscale)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
fast-paginate fast_page
4 2
1,149 292
3.1% 1.4%
0.0 2.9
18 days ago 9 months ago
PHP Ruby
MIT License Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

fast-paginate

Posts with mentions or reviews of fast-paginate. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-08-21.

fast_page

Posts with mentions or reviews of fast_page. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-08-21.
  • We switched to cursor-based pagination
    2 projects | news.ycombinator.com | 21 Aug 2022
    There are ways to mitigate the (although not eliminate) the slowing down of offset/limit pagination in later pages. The technique is called a "deferred join" and it is most effective in MySQL. The basic idea is to paginate as little data as necessary, and then do a self-join to get the rest of the data for a single page.

    You can read more about it here: https://aaronfrancis.com/2022/efficient-pagination-using-def... or here https://planetscale.com/blog/fastpage-faster-offset-paginati....

    There are libraries for Laravel (https://github.com/hammerstonedev/fast-paginate) and Rails (https://github.com/planetscale/fast_page) as well!

    Cursor based pagination is wonderful, but sometimes you're stuck with offset/limit for whatever reason. Might as well make it fast.

  • Faster offset pagination for Rails apps
    2 projects | news.ycombinator.com | 16 Aug 2022
    In both Django and Rails, passing a QuerySet or ActiveRecord::Relation as an argument to a filter/where creates a subquery - in this case, https://github.com/planetscale/fast_page/blob/main/lib/fast_... creates SELECT ... WHERE id IN (SELECT id FROM ...).

    So it's not exactly an inner join, but in theory it will be optimized to the same query plan as an inner join. That said, https://stackoverflow.com/questions/2577174/join-vs-sub-quer... has lots of commentary on why this shouldn't be depended on.

What are some alternatives?

When comparing fast-paginate and fast_page you can also consider the following projects:

Laravel - Laravel is a web application framework with expressive, elegant syntax. We’ve already laid the foundation for your next big idea — freeing you to create without sweating the small things.

Scenic - Versioned database views for Rails