Simple pagination #989
Closed
mattusik
started this conversation in
Feature Requests
Replies: 1 comment 1 reply
-
Added for next release: 8eacdfb |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
You are using laravel
paginate
method inexecuteQuery
, unfortunately under the hoodselect count(*) as aggregate from tableName
is executed all the time. I'm facing huge performance issues because of this in huge tables. UsesimplePaginate
instead ofpaginate
would solve my problems.I was thinking about something like this:
I know that simplePaginate will support only prev & next links, but that is completely ok.
Beta Was this translation helpful? Give feedback.
All reactions