Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

on the mongodb docs it says: (source)

Unfortunately skip can be (very) costly and requires the server to walk from the beginning of the collection, or index, to get to the offset/skip position before it can start returning the page of data (limit). As the page number increases skip will become slower and more cpu intensive, and possibly IO bound, with larger collections. Range based paging provides better use of indexes but does not allow you to easily jump to a specific page.

What is range based paging and where is the documentation for it?

share|improve this question

1 Answer

up vote 8 down vote accepted

The basic idea is to write the paging into the query predicate pattern.

For example if you list forum posts by date and you want to show the next page then use the date of the last post on the current page as a predicate. MongoDB can use the index built on the date field.

//older posts
db.forum_posts.find({date: {$lt: ..last_post_date..} }).sort({date: -1}).limit(20);

Of course this gets a little more complicated if the field you are using for sorting is not unique.

share|improve this answer
Thanks, how do I get the 10 before and the 10 after? – Harry Jul 24 '11 at 10:40
the example shows how to retrieve the "next 10" elements, the "previous 10" is similar, just use {$gt: ..first_post_on_page_date..} – Karoly Horvath Jul 24 '11 at 15:23
Remember to put an index on the date field, otherwise it does not work – Maxence Jul 25 '11 at 6:21
no way to put those 2 onto the same query? – Harry Jul 25 '11 at 10:13
you mean before and after? does that make any sense? – Karoly Horvath Jul 25 '11 at 10:18
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.