Optimise pagination. #191
Labels
backend
Backend related fix
code-standard
Align with coding standards
invalid
This doesn't seem right
Currently, pagination implemented in blogs/views.py loads the whole queryset into memory and then applies pagination on it. This means the whole queryset will be loaded everytime a user demands a page (or a new page). Check if this is indeed happening, and if yes, then are there any ways to optimise this.
The text was updated successfully, but these errors were encountered: