I have problem storing a big queryset in the session. This queryset is from a search and I need to store it for paginate inside every result. This is the code in my view:
c = queryset.order_by('-order')
request.session['query_search'] = c
You can see an example in my site: http://www.lukmi.com/classifieds/chicas/escorts/barcelona/ This is a list of results(the queryset) and I store it in the session because I need to use it in each profile to go to next profile.
I have some problems to store it because is very big. Anybody knows a good solution?