I originally used skip, but later found that skip was extremely poor in the case of big data.
Is there any good method?
Does the new 3.0 improve skip performance?
Use id comparison to turn pages:
Db.tweets.find({_id: {$lt: < last id on first page >}}). limit (50). sort ({_ id:-1}).
http://stackoverflow.com/questions/20960815/range-query-for-mongodb-pa …