Range based paging is doable, but you need to be smart about how you min/max the query.
If you can afford to you should try caching the results of a query in a temporary file or collection. Thanks to TTL collections in MongoDB you can insert your results into two collections.
- Search+User+Parameters Query (TTL whatever)
- Results of query (TTL whatever + cleaning interval + 1)
Using both assures you will not get partial results when the TTL is near the current time. You can utilize a simple counter when you store the results to do a VERY simple range query at that point.