[Django]-Django passing querysets between pages

1👍

Save the result of the querysets to the session. When I say to save the results, what I mean is to run list() on it to execute them, and then store the resulting list in request.session.

3👍

From my experience, I think saving your result on session is a good and simple solution.

1👍

sounds like you want to have a look at caching

👤second

Leave a comment