[Answered ]-More efficient way of paginating in Django

2👍

Paginator won’t get all the objects. As in your case, you asked for 25 objects. Thus, each page will contain 25 objects. When you try to access the next page, a new DB request will be sent to access objects 26-50.

Leave a comment