I'm building an app that requires pagination. I looked at the official pagination documentation I found at:
http://www.djangoproject.com/documentation/models/pagination/ I followed the tutorial and basically: paginator = ObjectPaginator(Article.objects.all(), 5) is where all the "magic" happens. What I'm concerned about is that Article.objects.all() will return a query_set with all of the records. If I have millions of records it means the returned query_set will be huge and I'm affraid performance will be poor in and very busy site. Should I be concerned about this? What are your thoughs? Thanks, Sebastian Macias --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---