Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 293 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 293 Bytes

laravel cursor vs offset pagination

Pagination Type Elapsed Time
$query->paginate(10) ~8 seconds
$query->fastPaginate(10) ~6 seconds
$query->simplePaginate(10) ~4 seconds
$query->cursorPaginate(10) ~3 seconds

SQL Query