For speed, I\'d like to limit a query to 10 results
db.collection.find( ... ).limit(10)
However, I\'d also like to know the total count, so
Doing count(1) includes limit and skip.