fast_page
fast_page copied to clipboard
Blazing fast pagination for ActiveRecord with deferred joins ⚡️
There might be a reason that escapes me, but I don't get why the gem is doing a full roundtrip to fetch the ids. Active Record supports nested queries just...
The load method returns the `ActiveRecord` relation rather than the `Array` of records that has been loaded. As `to_a` dups and returns `records` it would also return the `ActiveRecord` relation...
### The problem In some cases when a query is using `includes` and the included tables are used in the `where` clauses, the returned results seems to be duplicated and...
This is more of a question about the usage of this Gem. I am using [`api-pagination`](https://github.com/davidcelis/api-pagination) in combination with `pagy` to provide a paginated API. This might be as simple...
I think this is intentional to be honest, but I would like to know if there is something I can do about it. Here is my situation: in our application,...