Faster Django Pagination App
We use django-paging, which is a bit old. One of the big issues is that the app performs a count on the queryset returned by each view, which is slow and doesn't provide us any va开发者_如何转开发lue in our case.
I see that django-pagination has more downloads/repo-watchers. I've also used the Django Digg Style paginator in the past.
Should we switch over to a new paginator app or just strip out the count MySQL query?
Thanks
精彩评论