I'm rolling my own pagination for my models.
What is the preferred way to get the total count when making a limited, skipped find()?
Getting the whole result and then just taking the required objects seems wasteful, especially when I only need the first 20 of 10,000 records.
Thanks