`Page` includes total count and total pages (requires an extra count query). `Slice` only knows if there’s a next page (no total count), so it’s cheaper. Use `Slice` when you don’t need totals and want better performance.