I have a cookie based session in place and I tried to keep data between two pages stored in the session however the data stored in the session variable keeps restting.
An example of this was:
At Home page:
request.session['foo'] = []
request.session['foo'].append('bar')
print request.session['foo'] will yield ['bar']
On second page:
print request.session['foo'] will yield []
I was wondering why this is the case?