ross / performant-pagination

High Performance Python Django pagination
MIT License
37 stars 6 forks source link

(re-)add support for compound orderings #1

Open ross opened 10 years ago

ross commented 10 years ago

old version wasn't complete and was getting in the way of serialization. now that serialization is mostly ironed out it should be eaiser to go back in and get right.

queries need to be:

where first > first_value or (first = first_value and second > second_value) ...